summaryrefslogtreecommitdiff
path: root/src/post-compile
diff options
context:
space:
mode:
authorSitaram Chamarty <sitaram@atc.tcs.com>2012-03-12 20:54:30 +0530
committerSitaram Chamarty <sitaram@atc.tcs.com>2012-03-24 10:30:42 +0530
commit7f8020adc5709690e74f0d07838022e43533c272 (patch)
tree233f1050e326e63c19dbbc398315d87721fcf13b /src/post-compile
parent0aeb0cd5e2e37387a7fff5e11ff3012eb5b65646 (diff)
'info' command, plus lots more changes:
- usage() gets a little smarter; it now knows what function it was called from and tries to find a '=for function_name' chunk of data in the script - the various list-* functions now work off a dispatcher in Load.pm - (...and they all use the new usage() magic to print their helps!) - src/gitolite got a lot leaner due to this dispatcher - src/gitolite-shell became a lot more easier to read/flow - rc acquired '{COMMANDS}', which gitolite-shell now refers to - comments in the default rc file changed a bit - rc got a new REMOTE_COMMAND_PATT (in place of ADC_CMD_ARGS_PATT) the rest is perltidy and stuff like that
Diffstat (limited to 'src/post-compile')
-rwxr-xr-xsrc/post-compile/ssh-authkeys2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post-compile/ssh-authkeys b/src/post-compile/ssh-authkeys
index c45e388..5e5ad4b 100755
--- a/src/post-compile/ssh-authkeys
+++ b/src/post-compile/ssh-authkeys
@@ -89,7 +89,7 @@ sub fp {
return map { fp_line($_) } grep { !/^#/ and /\S/ } slurp($in);
} else {
# one or more actual keys
- return map { fp_line($_) } grep { !/^#/ and /\S/ } ($in, @_);
+ return map { fp_line($_) } grep { !/^#/ and /\S/ } ( $in, @_ );
}
}