diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-09 17:16:03 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-09 17:16:03 +0200 |
commit | 61d06b7df1bd8a8fcc53e3d0799beae67e0649e2 (patch) | |
tree | d227751e157d38a0c054dfb9c3e525f6465dc32f | |
parent | I read man (diff) | |
download | joe-scripts-61d06b7df1bd8a8fcc53e3d0799beae67e0649e2.tar.gz joe-scripts-61d06b7df1bd8a8fcc53e3d0799beae67e0649e2.tar.bz2 joe-scripts-61d06b7df1bd8a8fcc53e3d0799beae67e0649e2.tar.xz joe-scripts-61d06b7df1bd8a8fcc53e3d0799beae67e0649e2.tar.zst joe-scripts-61d06b7df1bd8a8fcc53e3d0799beae67e0649e2.zip |
Less fucked up
-rwxr-xr-x | src/update/gitjoe.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/update/gitjoe.pl b/src/update/gitjoe.pl index f7d9de1..67bfd82 100755 --- a/src/update/gitjoe.pl +++ b/src/update/gitjoe.pl @@ -49,12 +49,12 @@ sub stagit_generate { system( '/usr/local/bin/dash', '-c', - '/usr/bin/touch ' . $site_dir . $user . $repos[$i] . '.cache' + '/usr/bin/touch ' . $site_dir . $user . '/' . $repos[$i] . '.cache' ); system( '/usr/local/bin/dash', '-c', - '/usr/local/bin/stagit -c ' . $site_dir . $user . $repos[$i] . '.cache ' . $home_dir . $repos[$i] . '/' + '/usr/local/bin/stagit -c ' . $site_dir . $user . '/' . $repos[$i] . '.cache ' . $home_dir . $repos[$i] . '/' ); copy('../style.css', './style.css'); copy('../logo.png', './logo.png'); |