0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 06:58:58 -05:00

🎉 Add jvm-repl script to frontend directory.

This commit is contained in:
Andrey Antukh 2022-01-12 20:26:58 +01:00 committed by Andrés Moya
parent 6dedfaea2f
commit ef17af38a1

11
frontend/scripts/jvm-repl Executable file
View file

@ -0,0 +1,11 @@
#!/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;