mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
7 lines
No EOL
197 B
Bash
Executable file
7 lines
No EOL
197 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
DIRNAME=`dirname $(readlink -f "$0")`
|
|
if [[ "$(uname)" == "CYGWIN"* ]]; then
|
|
DIRNAME=`cygpath -d "$DIRNAME"`
|
|
fi
|
|
java -jar "${DIRNAME}/../kobalt/wrapper/kobalt-wrapper.jar" $* |