aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-03-26 17:18:17 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-03-26 17:18:17 -0500
commit37c2a2caa41c7c67b0a7daf4107d9a2ac12256dd (patch)
treec1e87f46656ef87ccf9866a3b35b6a427ade0f78
parent105789821259880e1eb035d9506eac3cab82e624 (diff)
Add some curly braces around retval for fun.
-rw-r--r--insidechroot.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/insidechroot.sh b/insidechroot.sh
index 8e5ec69..88a5d26 100644
--- a/insidechroot.sh
+++ b/insidechroot.sh
@@ -153,7 +153,7 @@ EOF
for package in libstdc++ gettext bison perl python texinfo util-linux; do
source packageinstall.sh 7 $package
retval=$?
- if [ "$retval" -ne 0 ]; then
+ if [ "${retval}" -ne 0 ]; then
exit 1
fi
done