From fa0609d093c41df3cd72510ee5651866e660ae4a Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Sun, 6 May 2018 01:28:55 +0200 Subject: [PATCH] Attempt to fix travis rpi cfg --- scripts/ci/rpi/mkimage.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ci/rpi/mkimage.sh b/scripts/ci/rpi/mkimage.sh index 5120e18..b046878 100644 --- a/scripts/ci/rpi/mkimage.sh +++ b/scripts/ci/rpi/mkimage.sh @@ -16,6 +16,7 @@ fi MOUNT="mnt" echo "Welcome to mkimage.sh script." +pwd # Unmount drives and general cleanup on exit, the trap ensures this will always # run execpt in the most extream cases. @@ -61,7 +62,7 @@ mount "${rootdev}" "${MOUNT}" mount "${bootdev}" "${MOUNT}/boot" # Copy our installation script and other artifacts. -#install -Dm755 "${SCRIPT}" "${MOUNT}/tmp/${SCRIPT}" +install -Dm755 "${SCRIPT}" "${MOUNT}/tmp/${SCRIPT}" # Prep the chroot. mount --bind /proc "${MOUNT}/proc"