From 57555acd4a5ba98a0d5d7e04a6b01854a2a33ac7 Mon Sep 17 00:00:00 2001 From: Thomas Roeblitz Date: Sun, 19 May 2024 22:14:20 +0200 Subject: [PATCH] fix copy command --- bot/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/build.sh b/bot/build.sh index c5fc9bb8a5..a12d3669fc 100755 --- a/bot/build.sh +++ b/bot/build.sh @@ -280,7 +280,7 @@ if [[ ! -z ${LOWER_DIRS} ]]; then mkdir -p ${LOWER_DIRS_ONLY} echo "contents of LOWER_DIRS_ONLY (after mkdir -p)" ls -lisaR ${LOWER_DIRS_ONLY} - cp -a ${LOWER_DIRS}/ ${LOWER_DIRS_ONLY} + cp -a ${LOWER_DIRS}/. ${LOWER_DIRS_ONLY} echo "contents of LOWER_DIRS_ONLY (after cp -a)" ls -lisaR ${LOWER_DIRS_ONLY} find ${LOWER_DIRS_ONLY} -type f -exec rm {} \;