jester.sh 505 B

12345678910111213141516171819202122
  1. #!/bin/bash
  2. fw_depends nim nimble
  3. RETCODE=$(fw_exists ${IROOT}/jester.installed)
  4. [ ! "$RETCODE" == 0 ] || { \
  5. source $IROOT/jester.installed
  6. return 0; }
  7. JESTER=$IROOT/jester
  8. git clone https://github.com/dom96/jester.git
  9. cd jester
  10. # 2015-06-25
  11. git checkout 71b8cc069a0d271d619c2dc41bc6479047885587
  12. nimble update
  13. # If /home/testrunner/.nimble/pkgs/jester exists, write over it.
  14. echo 'y' | nimble install
  15. echo "export JESTER_HOME=${JESTER}" > $IROOT/jester.installed
  16. source $IROOT/jester.installed