11 lines
215 B
Bash
11 lines
215 B
Bash
#!/bin/sh
|
|
|
|
# Get the absolute path to this script's folder.
|
|
if echo "$0" | awk '{exit(!/^\//);}'; then
|
|
maindir=$(dirname "$0");
|
|
else
|
|
maindir=$PWD/$(dirname "$0");
|
|
fi
|
|
|
|
cd "${maindir}";
|
|
java -jar modman.jar "$@";
|