mirror of
https://github.com/penpot/penpot.git
synced 2025-12-12 06:24:17 +01:00
8 lines
157 B
Bash
Executable File
8 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
|