diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-06 17:09:59 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-06 17:09:59 +0200 |
commit | b13dbf43f8966ef7edbcb62dc9286364ff379b0c (patch) | |
tree | 600a6b9db24153f1b340d6e2ce8849a308355ec6 | |
parent | fix (diff) | |
download | joe-scripts-b13dbf43f8966ef7edbcb62dc9286364ff379b0c.tar.gz joe-scripts-b13dbf43f8966ef7edbcb62dc9286364ff379b0c.tar.bz2 joe-scripts-b13dbf43f8966ef7edbcb62dc9286364ff379b0c.tar.xz joe-scripts-b13dbf43f8966ef7edbcb62dc9286364ff379b0c.tar.zst joe-scripts-b13dbf43f8966ef7edbcb62dc9286364ff379b0c.zip |
True fix
-rwxr-xr-x | gitjoe-newuser.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitjoe-newuser.pl b/gitjoe-newuser.pl index 3102aeb..7995668 100755 --- a/gitjoe-newuser.pl +++ b/gitjoe-newuser.pl @@ -47,12 +47,12 @@ EOF" system( '/usr/local/bin/dash', '-c', - '/bin/mkdir -v' . $home_dir . 'git-shell-commands' + '/bin/mkdir -v ' . $home_dir . 'git-shell-commands' ); system( '/usr/local/bin/dash', '-c', - '/bin/ln -v -s ' . $home_dir . 'git-shell-commands/ls /bin/ls' + '/bin/ln -v -s /bin/ls ' . $home_dir . 'git-shell-commands/ls' ); } |