mirror of
https://github.com/xpipe-io/xpipe.git
synced 2025-12-30 02:18:35 -05:00
10 lines
185 B
Bash
10 lines
185 B
Bash
#!/bin/bash
|
|
|
|
DIR="${0%/*}"
|
|
EXTRA_ARGS=(JVM-ARGS)
|
|
export CDS_JVM_OPTS="${EXTRA_ARGS[*]}"
|
|
|
|
"$DIR/../../runtime/Contents/Home/bin/xpiped" "$@"
|
|
|
|
read -rsp "Press any key to close" -n 1 key
|