mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
14 lines
197 B
Bash
Executable File
14 lines
197 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR=$(dirname $0);
|
|
|
|
source $SCRIPT_DIR/_env;
|
|
export OPTIONS="-A:dev"
|
|
|
|
entrypoint=${1:-app.main};
|
|
|
|
shift 1;
|
|
set -ex
|
|
|
|
exec clojure $OPTIONS -A:dev -M -m $entrypoint "$@";
|