[clean] Restore IFS for 'blackbox_postdeploy'

This commit is contained in:
Charles Prost
2015-03-19 10:55:37 +01:00
parent d8fb3e855d
commit f78d25b004

View File

@@ -26,6 +26,8 @@ fi
change_to_vcs_root
prepare_keychain
OLDIFS=$IFS
# Decrypt:
echo '========== Decrypting new/changed files: START'
while IFS= read <&99 -r unencrypted_file; do
@@ -36,4 +38,7 @@ while IFS= read <&99 -r unencrypted_file; do
chgrp "$FILE_GROUP" "$unencrypted_file"
fi
done 99<"$BB_FILES"
IFS=$OLDIFS
echo '========== Decrypting new/changed files: DONE'