aboutsummaryrefslogtreecommitdiff
path: root/linaro-hwpack-install
diff options
context:
space:
mode:
Diffstat (limited to 'linaro-hwpack-install')
-rwxr-xr-xlinaro-hwpack-install6
1 files changed, 5 insertions, 1 deletions
diff --git a/linaro-hwpack-install b/linaro-hwpack-install
index b13dc31..54acd88 100755
--- a/linaro-hwpack-install
+++ b/linaro-hwpack-install
@@ -29,7 +29,11 @@
set -e
-unset TMPDIR
+if [ -n "${TMPDIR+x}" ]; then
+ echo -e "\nWARNING: TMPDIR variable is set. It will be unset because in chroot environment it likely doesn't exist and can lead to error messages.\n"
+ unset TMPDIR
+fi
+
LOCKFILE="/var/lock/hwpack"
TEMP_DIR=$(mktemp -d)
HWPACK_DIR="${TEMP_DIR}/unpacked"