mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 08:20:45 -05:00
11 lines
217 B
Bash
Executable file
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
|