Browse Source

Make _update-repo-pages.sh safer against failures

pull/14/head
falkTX 5 years ago
parent
commit
df65bf07a3
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      _update-repo-pages.sh

+ 4
- 2
_update-repo-pages.sh View File

@@ -7,6 +7,8 @@ set -e
cd ~/sites/kxstudio
git pull
cd repo
./generate-repo-page.sh apps > applications.html
./generate-repo-page.sh plugins > plugins.html
./generate-repo-page.sh apps > applications.html.tmp
./generate-repo-page.sh plugins > plugins.html.tmp
mv applications.html.tmp applications.html
mv plugins.html.tmp plugins.html
EOF

Loading…
Cancel
Save