Last active
August 29, 2015 14:24
-
-
Save alfonsojon/916a1d9597087e81a0f8 to your computer and use it in GitHub Desktop.
What is this, and why doesn't it work
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ -L "$0" ]]; then | |
source $(dirname $(readlink -e $0))/config | |
else | |
source $(dirname "$0")/config | |
fi | |
[[ "$SERVICE" == "" ]] && { | |
echo "Couldn't load config file, please edit config.example and rename it to config" | |
logger -t minecraft-init "Couldn't load config file, please edit config.example and rename it to conf$ | |
exit | |
} |
Author
alfonsojon
commented
Jul 4, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment