diff options
Diffstat (limited to 'script-checker')
-rwxr-xr-x | script-checker | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/script-checker b/script-checker index ec79fcc61..521cf9025 100755 --- a/script-checker +++ b/script-checker @@ -1,11 +1,18 @@ #!/bin/bash +# Copyright (c) Hercules Dev Team, licensed under GNU GPL. +# See the LICENSE file +# Base Author: Haru @ http://hercules.ws + ORIG_CWD="$(pwd)" BASEDIR="$(dirname "$0")" EXECUTABLE="./map-server" cd "${BASEDIR}" if [ -z "$1" ]; then + echo "No file specified." + echo "Usage: $0 <path to the script>" + echo " (you may use a relative or absolute path)" exit -1 elif [[ "$1" =~ ^\/ ]]; then FILE="$1" |