Slipstream-Mod-Manager/skel_unix/modman-cli.sh
2013-11-28 23:27:30 -05:00

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 "$@";