mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-14 12:26:41 +01:00
9 lines
183 B
Bash
Executable file
9 lines
183 B
Bash
Executable file
#!/bin/sh
|
|
|
|
DIRNAME=$(dirname "$(readlink -e "$0")")
|
|
DIR=$(cd "$DIRNAME" || exit 112; pwd)
|
|
|
|
[ "$OSTYPE" = "cygwin" ] \
|
|
&& DIR="$( cygpath -m "$DIR" )"
|
|
|
|
java -jar "$DIR/jd-cli.jar" $@
|