0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-26 00:19:07 -05:00
penpot/frontend/scripts/figwheel

12 lines
217 B
Text
Raw Normal View History

2016-11-22 16:53:10 +01:00
#!/usr/bin/env bash
DIR=`dirname $0`
LEIN="$DIR/lein"
2016-11-22 16:53:10 +01:00
RLWRAP=`which rlwrap`
if [ $? != 0 ]; then
RLWRAP="";
fi
LEIN_FAST_TRAMPOLINE=y $RLWRAP $LEIN trampoline run -m clojure.main scripts/figwheel.clj || exit 1