0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 00:40:30 -05:00
penpot/frontend/scripts/jvm-repl

12 lines
205 B
Text
Raw Normal View History

#!/usr/bin/env bash
# A repl usefull for debug macros.
export OPTIONS="\
-J-XX:-OmitStackTraceInFastThrow \
-J-Xms50m -J-Xmx512m \
-M:dev:jvm-repl";
set -ex;
exec clojure $OPTIONS;