- #!/bin/bash
- RETCODE=$(fw_exists ${IROOT}/dsl-compiler-1.6.installed)
- [ ! "$RETCODE" == 0 ] || { \
- return 0; }
- wget -O $IROOT/dsl-compiler.zip https://github.com/ngs-doo/revenj/releases/download/1.4.0/dsl-compiler.zip
- unzip -o $IROOT/dsl-compiler.zip -d $IROOT
- rm $IROOT/dsl-compiler.zip
- echo "1.6" > $IROOT/dsl-compiler-1.6.installed
|