1
mirror of https://git.dn42.dev/dn42/registry.git synced 2024-12-25 23:43:44 +01:00

Fix shellcheck errors and warning on check-my-stuff

This commit is contained in:
Jean-Rémy Buchs 2017-10-25 22:45:11 +02:00
parent d82a359e40
commit 4f95aaa7b0

View File

@ -6,8 +6,8 @@ if [ $# -eq 0 ]
exit
fi
BASE=$(realpath $0)
BASE=$(dirname $BASE)
cd $BASE
BASE="$(realpath "$0")"
BASE="$(dirname "$BASE")"
cd "$BASE" || exit 1
utils/schema-check/dn42-schema.py scan data/ -m $1
utils/schema-check/dn42-schema.py scan data/ -m "$1"