mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 16:00:19 -05:00
20 lines
658 B
Bash
Executable file
20 lines
658 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
export PENPOT_FLAGS="enable-asserts enable-audit-log $PENPOT_FLAGS"
|
|
|
|
export OPTIONS="
|
|
-A:dev \
|
|
-J-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager \
|
|
-J-Djdk.attach.allowAttachSelf \
|
|
-J-Dpolyglot.engine.WarnInterpreterOnly=false \
|
|
-J-XX:+EnableDynamicAgentLoading \
|
|
-J-XX:-OmitStackTraceInFastThrow \
|
|
-J-XX:+UnlockDiagnosticVMOptions \
|
|
-J-XX:+DebugNonSafepoints \
|
|
-J-Djdk.tracePinnedThreads=full"
|
|
|
|
export OPTIONS_EVAL="nil"
|
|
# export OPTIONS_EVAL="(set! *warn-on-reflection* true)"
|
|
|
|
set -ex
|
|
exec clojure $OPTIONS -M -e "$OPTIONS_EVAL" -m rebel-readline.main
|