mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
21 lines
658 B
Bash
Executable File
21 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
|