Unverified Commit 9b78c376 authored by Victor Engmark's avatar Victor Engmark
Browse files

jekyll: Quote variable dereferencing

As per `shellcheck`:

> SC2086 (info): Double quote to prevent globbing and word splitting.
parent caa9cf13
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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"