aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-06 17:50:08 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-06 17:50:08 +0200
commit521fed1709874465cef23d61907aea3f28da7da3 (patch)
tree7a2e801deb33c1c614ff59e964c8354f366135f8
parentTrying the newrepo script (diff)
downloadjoe-scripts-521fed1709874465cef23d61907aea3f28da7da3.tar.gz
joe-scripts-521fed1709874465cef23d61907aea3f28da7da3.tar.bz2
joe-scripts-521fed1709874465cef23d61907aea3f28da7da3.tar.xz
joe-scripts-521fed1709874465cef23d61907aea3f28da7da3.tar.zst
joe-scripts-521fed1709874465cef23d61907aea3f28da7da3.zip
Fix
-rwxr-xr-xgitjoe-newrepo.pl4
1 files changed, 1 insertions, 3 deletions
diff --git a/gitjoe-newrepo.pl b/gitjoe-newrepo.pl
index d90993c..77651c4 100755
--- a/gitjoe-newrepo.pl
+++ b/gitjoe-newrepo.pl
@@ -38,15 +38,13 @@ sub main {
system(
'/usr/local/bin/dash',
'-c',
- '/usr/bin/touch -v ' . $home_dir . $repo . 'git-daemon-export-ok'
+ '/usr/bin/touch ' . $home_dir . $repo . 'git-daemon-export-ok'
);
system(
'/usr/local/bin/dash',
'-c',
'/usr/sbin/chown -v ' . $usr . ':' . $usr . ' ' . $home_dir . $repo . 'git-daemon-export-ok'
);
- system(
- );
exit;
}