Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2aded7dd authored by Brian Egizi's avatar Brian Egizi
Browse files

Fix unbound variable in kzip script

Change-Id: Id7f81677389cb853da064a43f1d5d54b2271f0c0
parent c3a800f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@

# If the SUPERPROJECT_REVISION is defined as a sha, use this as the default value if no
# SUPERPROJECT_SHA is specified.
if [[ $SUPERPROJECT_REVISION =~ [0-9a-f]{40} ]]; then
if [[ ${SUPERPROJECT_REVISION:-} =~ [0-9a-f]{40} ]]; then
  : ${KZIP_NAME:=${SUPERPROJECT_REVISION:-}}
fi