jekyll: Quote variable dereferencing

As per `shellcheck`:

> SC2086 (info): Double quote to prevent globbing and word splitting.
This commit is contained in:
Victor Engmark 2024-06-26 18:09:13 +02:00
parent caa9cf136b
commit 9b78c3760a
No known key found for this signature in database

View File

@ -3,7 +3,7 @@
set -o errexit -o nounset
readonly BASEDIR="$(dirname $(readlink -f $0))"
readonly BASEDIR="$(dirname "$(readlink -f "$0")")"
for directory in "basic" "full"; do
pushd "$BASEDIR/$directory"