File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -771,16 +771,16 @@ upgrade_transcrypt() {
771
771
cipher=$( git config --get --local transcrypt.cipher)
772
772
password=$( git config --get --local transcrypt.password)
773
773
else
774
- cipher=$( git config --get --local transcrypt.${context_name} .cipher)
775
- password=$( git config --get --local transcrypt.${context_name} .password)
774
+ cipher=$( git config --get --local transcrypt." ${context_name} " .cipher)
775
+ password=$( git config --get --local transcrypt." ${context_name} " .password)
776
776
fi
777
777
ORIG_CONFIGS+=(" ${context_name} |${cipher} |${password} " )
778
778
done
779
779
780
780
uninstall_transcrypt
781
781
782
782
# Reconfigure cipher and password for each context
783
- for orig_config_line in ${ORIG_CONFIGS[@]} ; do
783
+ for orig_config_line in " ${ORIG_CONFIGS[@]} " ; do
784
784
context=$( echo " $orig_config_line " | awk ' BEGIN { FS = "|" }; { print $1 }' )
785
785
cipher=$( echo " $orig_config_line " | awk ' BEGIN { FS = "|" }; { print $2 }' )
786
786
password=$( echo " $orig_config_line " | awk ' BEGIN { FS = "|" }; { print $3 }' )
You can’t perform that action at this time.
0 commit comments