diff options
-rwxr-xr-x | cli/icevault | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/icevault b/cli/icevault index 7bbc37f..d679b04 100755 --- a/cli/icevault +++ b/cli/icevault @@ -169,7 +169,7 @@ sub loadConfig() { error "Insecure C<%s>", $CONFIG{pwgen} unless $CONFIG{pwgen} =~ /\A([-_\@a-zA-Z0-9\.%\/= ]+)\z/; $CONFIG{pwgen} = $1; - $CONFIG{gpg} //= qw/gpg --quiet/; + $CONFIG{gpg} //= 'gpg --quiet'; $CONFIG{gpg} =~ s#\A~/#$ENV{HOME}#; error "Insecure C<%s>", $CONFIG{gpg} unless $CONFIG{gpg} =~ /\A([-_\@a-zA-Z0-9\.%\/= ]+)\z/; $CONFIG{gpg} = $1; |