From f78d25b0045dd5d2053531a52184d98d734a63c1 Mon Sep 17 00:00:00 2001 From: Charles Prost Date: Thu, 19 Mar 2015 10:55:37 +0100 Subject: [PATCH] [clean] Restore IFS for 'blackbox_postdeploy' --- bin/blackbox_postdeploy | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/blackbox_postdeploy b/bin/blackbox_postdeploy index df608e7..bb4a3c0 100755 --- a/bin/blackbox_postdeploy +++ b/bin/blackbox_postdeploy @@ -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'