mirror of
https://github.com/penpot/penpot.git
synced 2025-01-27 00:49:28 -05:00
c1476d0397
And refactor internal error reporting.
10 lines
349 B
Bash
Executable file
10 lines
349 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
export PENPOT_ASSERTS_ENABLED=true
|
|
|
|
export OPTIONS="-A:jmx-remote:dev -J-Dclojure.tools.logging.factory=clojure.tools.logging.impl/log4j2-factory -J-Xms512m -J-Xmx512m"
|
|
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
|