mirror of
https://git.dn42.dev/dn42/registry.git
synced 2025-05-09 06:05:22 +08:00
Fix shellcheck errors and warning on check-my-stuff
This commit is contained in:
parent
d82a359e40
commit
4f95aaa7b0
1 changed files with 4 additions and 4 deletions
|
@ -6,8 +6,8 @@ if [ $# -eq 0 ]
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
BASE=$(realpath $0)
|
BASE="$(realpath "$0")"
|
||||||
BASE=$(dirname $BASE)
|
BASE="$(dirname "$BASE")"
|
||||||
cd $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"
|
||||||
|
|
Loading…
Add table
Reference in a new issue