mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
Found via `codespell -q 3 -S *.po,./frontend/yarn.lock -L childs,clen,fpr,inflight,ody,ot,ro,te,trys,ue`
12 lines
204 B
Bash
Executable File
12 lines
204 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# A repl useful for debug macros.
|
|
|
|
export OPTIONS="\
|
|
-J-XX:-OmitStackTraceInFastThrow \
|
|
-J-Xms50m -J-Xmx512m \
|
|
-M:dev:jvm-repl";
|
|
|
|
set -ex;
|
|
exec clojure $OPTIONS;
|