KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_update-repo-pages.sh 285B

1234567891011121314
  1. #!/bin/bash
  2. set -e
  3. ssh -A kx.studio bash <<EOF
  4. set -e
  5. cd ~/sites/kxstudio
  6. git pull
  7. cd repo
  8. ./generate-repo-page.sh apps > applications.html.tmp
  9. ./generate-repo-page.sh plugins > plugins.html.tmp
  10. mv applications.html.tmp applications.html
  11. mv plugins.html.tmp plugins.html
  12. EOF