summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSitaram Chamarty <sitaramc@gmail.com>2020-02-07 05:16:42 +0530
committerSitaram Chamarty <sitaramc@gmail.com>2020-02-07 05:16:42 +0530
commitd89c7ddce000de3de8c6216877e2ad94d63e36d1 (patch)
tree72ef7563b5e30b5af38daeb410487f45a594fccf
parent8268fc3a46f48d227dfeeb3de9305dd051382022 (diff)
propagate *all* ssh-keygen errors
-rw-r--r--src/lib/Gitolite/Common.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Gitolite/Common.pm b/src/lib/Gitolite/Common.pm
index af9c875..b06f967 100644
--- a/src/lib/Gitolite/Common.pm
+++ b/src/lib/Gitolite/Common.pm
@@ -361,7 +361,7 @@ sub ssh_fingerprint_file {
my $in = shift;
-f $in or die "file not found: $in\n";
my $fh;
- open( $fh, "ssh-keygen -l -f $in |" ) or die "could not fork: $!\n";
+ open( $fh, "ssh-keygen -l -f $in 2>&1 |" ) or die "could not fork: $!\n";
my $output = <$fh>;
chomp $output;
# dbg("fp = $fp");