From a476a6c68a7b4e3714a2c56d89957302ccfd8e8e Mon Sep 17 00:00:00 2001 From: Matteo Saloni Date: Wed, 23 Oct 2024 14:56:14 +0200 Subject: [PATCH] chore: fix builder-tool display of folders --- core-builder-tool/builder-tool.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core-builder-tool/builder-tool.sh b/core-builder-tool/builder-tool.sh index 5b8eb72f..9a075a10 100755 --- a/core-builder-tool/builder-tool.sh +++ b/core-builder-tool/builder-tool.sh @@ -143,7 +143,7 @@ sync_files() { # Check rsync exit status if [ $? -eq 0 ]; then - echo "Successfully copied '$source_file' to '$destination_path'" + echo "Successfully copied '$source_file' to '$destination_dir/$destination_path'" else echo "Error: Failed to rsync '$source_file' to '$destination_path'" fi @@ -248,4 +248,4 @@ if [ -f "$source_dir/context-refs.txt" ]; then fi chmod -R 655 "$destination_dir/*" || true -ls "$destination_dir" +ls -1l "$destination_dir"