We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 337b9fa commit fa73d38Copy full SHA for fa73d38
operations/_scripts/generate/generate_bitops_incoming.sh
@@ -205,8 +205,8 @@ function helm_move_content_prepend() {
205
done
206
# Move remaining folders (if they exist) and exclude the . folder
207
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/."
+ echo "rsync -av $folder $destination_folder/$chart_name/"
+ rsync -av "$folder" "$destination_folder/$chart_name/"
210
211
echo "Printing chart result"
212
tree "$destination_folder/$chart_name"
0 commit comments