Skip to content

Commit fa73d38

Browse files
use rsync for remaining chart folders
1 parent 337b9fa commit fa73d38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

operations/_scripts/generate/generate_bitops_incoming.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ function helm_move_content_prepend() {
205205
done
206206
# Move remaining folders (if they exist) and exclude the . folder
207207
find "$chart_folder" -maxdepth 1 -type d -not -name "." -path "$chart_folder/*" | while read folder; do
208-
echo "mv $folder $destination_folder/$chart_name/."
209-
mv "$folder" "$destination_folder/$chart_name/."
208+
echo "rsync -av $folder $destination_folder/$chart_name/"
209+
rsync -av "$folder" "$destination_folder/$chart_name/"
210210
done
211211
echo "Printing chart result"
212212
tree "$destination_folder/$chart_name"

0 commit comments

Comments
 (0)