diff options
author | hitlerrip <git@hitler.rip> | 2025-08-05 18:19:16 +0200 |
---|---|---|
committer | hitlerrip <git@hitler.rip> | 2025-08-05 18:19:16 +0200 |
commit | dc9e1e9ab2477fa9ae90a3166b83324c329eb53e (patch) | |
tree | 69e69876bbf676f811915a6a329e4e6743cbd4be /pub.sh | |
parent | 05c6b9b34a14e3fa9abecea102204cff5a81ab46 (diff) | |
download | website-dc9e1e9ab2477fa9ae90a3166b83324c329eb53e.tar.gz website-dc9e1e9ab2477fa9ae90a3166b83324c329eb53e.tar.bz2 website-dc9e1e9ab2477fa9ae90a3166b83324c329eb53e.zip |
minor script fixes
- added pandoc to `run.sh`
- fixed copy command in `pub.sh`
Diffstat (limited to 'pub.sh')
-rwxr-xr-x | pub.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,6 +4,6 @@ git pull echo "=== publishing website! ===" sudo rm -rf /srv/web/ sudo mkdir -p /srv/web/ +sudo cp -r ./web/* /srv/web/ sudo chown -R $(whoami):$(whoami) /srv/web/ -cp ./web/* /srv/web/ sudo systemctl restart nginx |