mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 00:54:40 +00:00
jekyll: Quote variable dereferencing
As per `shellcheck`: > SC2086 (info): Double quote to prevent globbing and word splitting.
This commit is contained in:
parent
caa9cf136b
commit
9b78c3760a
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user