Skip to content

Commit

Permalink
chore: fix builder-tool display of folders
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-s committed Oct 23, 2024
1 parent cf82028 commit a476a6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core-builder-tool/builder-tool.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"

0 comments on commit a476a6c

Please sign in to comment.