aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-06 17:09:59 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-06 17:09:59 +0200
commitb13dbf43f8966ef7edbcb62dc9286364ff379b0c (patch)
tree600a6b9db24153f1b340d6e2ce8849a308355ec6
parentfix (diff)
downloadjoe-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-xgitjoe-newuser.pl4
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'
);
}