Planning applications tracker for InLinkUK from BT kiosks. https://kiosks.adrianshort.org/
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

18 rader
303 B

  1. #!/usr/bin/env sh
  2. # Get the latest code
  3. echo "Getting the latest code"
  4. git pull origin master
  5. echo "Downloading from Morph API"
  6. bundle exec bin/download
  7. echo "Building site"
  8. bundle exec bin/build
  9. cd _site
  10. git commit -am "Update content"
  11. echo "Pushing static site to git"
  12. git push origin master
  13. cd -