0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 08:20:45 -05:00
penpot/frontend/scripts/figwheel
2017-02-22 20:47:41 +01:00

11 lines
217 B
Bash
Executable file

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