mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-25 07:57:12 -07:00
Fix for GYGWIN
This commit is contained in:
parent
720e32aa07
commit
cf4013af89
1 changed files with 6 additions and 1 deletions
7
dist/kobaltw
vendored
7
dist/kobaltw
vendored
|
@ -1,2 +1,7 @@
|
|||
#!/usr/bin/env sh
|
||||
java -jar "`dirname "$(readlink -f "$0")"`/../kobalt/wrapper/kobalt-wrapper.jar" $*
|
||||
|
||||
DIRNAME=`dirname $(readlink -f "$0")`
|
||||
if [[ "$(uname)" == "CYGWIN"* ]]; then
|
||||
DIRNAME=`cygpath -d "$DIRNAME"`
|
||||
fi
|
||||
java -jar "${DIRNAME}/../kobalt/wrapper/kobalt-wrapper.jar" $*
|
Loading…
Add table
Add a link
Reference in a new issue