From 3b53967d0ffdd72c53836f7c628cb715637d90c4 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Thu, 20 May 2021 09:48:46 +1000 Subject: [PATCH] Fix Distmaker building by ensuring we are rsyncing from the right folder --- distmaker/dists/common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distmaker/dists/common.sh b/distmaker/dists/common.sh index 5422a38d32..dcc8e6059d 100644 --- a/distmaker/dists/common.sh +++ b/distmaker/dists/common.sh @@ -110,8 +110,8 @@ function dm_install_coreext() { shift for relext in "$@" ; do - [ ! -d "$to/$relext" ] && mkdir -p "$to/$relext" - ${DM_RSYNC:-rsync} -avC $excludes_rsync --include=core "$repo/$relext/./" "$to/$relext/./" + [ ! -d "$to/ext/$relext" ] && mkdir -p "$to/ext/$relext" + ${DM_RSYNC:-rsync} -avC $excludes_rsync --include=core "$repo/ext/$relext/./" "$to/ext/$relext/./" done } -- 2.25.1