aboutsummaryrefslogtreecommitdiffstats
path: root/cli/icevault
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2015-03-31 22:14:34 +0200
committerGuilhem Moulin <guilhem@fripost.org>2015-03-31 22:14:34 +0200
commit020ac04b7f743b707538fd40ae85ee862cdc31ec (patch)
tree5255e3f0285930adff31d3a04d59116dee120afd /cli/icevault
parente27989d46022f18d7937017a1f41f05c4378fe3a (diff)
Add --quiet to the default gpg options.
Diffstat (limited to 'cli/icevault')
-rwxr-xr-xcli/icevault2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/icevault b/cli/icevault
index 9f58502..7bbc37f 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} //= 'gpg';
+ $CONFIG{gpg} //= qw/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;