diff options
author | 2013-01-24 11:29:06 +0100 | |
---|---|---|
committer | 2013-02-05 14:35:46 +0530 | |
commit | 61048a5f98f35500e9710d4956dd3fd6678c6c38 (patch) | |
tree | 57377e8f16d3489f1ce65bcfe73f2db80afac6cb | |
parent | (minor) perms would not print the correct message sometimes... (diff) | |
download | gitolite-gentoo-61048a5f98f35500e9710d4956dd3fd6678c6c38.tar.gz gitolite-gentoo-61048a5f98f35500e9710d4956dd3fd6678c6c38.tar.bz2 gitolite-gentoo-61048a5f98f35500e9710d4956dd3fd6678c6c38.zip |
fix typo in ssh-authkeys
-rwxr-xr-x | src/triggers/post-compile/ssh-authkeys | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/triggers/post-compile/ssh-authkeys b/src/triggers/post-compile/ssh-authkeys index a18b833..25d75f0 100755 --- a/src/triggers/post-compile/ssh-authkeys +++ b/src/triggers/post-compile/ssh-authkeys @@ -78,7 +78,7 @@ sub sanity { _warn "$akdir missing; creating a new one" if not -d $akdir; _warn "$akfile missing; creating a new one" if not -f $akfile; - _mkdir( $akdir, 0700 ) if not -d $akfile; + _mkdir( $akdir, 0700 ) if not -d $akdir; if ( not -f $akfile ) { _print( $akfile, "" ); chmod 0700, $akfile; |