Unverified Commit 235bacee authored by Victor Engmark's avatar Victor Engmark
Browse files

jekyll: Remove unnecessary `readonly`

This was hiding the assignment exit code, as reported by `shellcheck`:

> SC2155 (warning): Declare and assign separately to avoid masking return
> values.
parent 9b78c376
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")")"
BASEDIR="$(dirname "$(readlink -f $0)")"

for directory in "basic" "full"; do
  pushd "$BASEDIR/$directory"