mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 08:20:45 -05:00
7 lines
157 B
Bash
Executable file
7 lines
157 B
Bash
Executable file
#!/usr/bin/env bash
|
|
RLWRAP=`which rlwrap`
|
|
if [ $? != 0 ]; then
|
|
RLWRAP="";
|
|
fi
|
|
|
|
$RLWRAP lein trampoline run -m clojure.main scripts/figwheel.clj || exit 1
|