From 4d2786d73e4f6a0c1b1b88eb265328917e81e1ae Mon Sep 17 00:00:00 2001 From: Fabio Belavenuto Date: Sat, 2 Jul 2022 02:06:40 -0300 Subject: [PATCH] Update build.sh Little fixes --- docker/build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/build.sh b/docker/build.sh index b250e89e..564bd8b5 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -7,6 +7,8 @@ function trap_cancel() { } trap trap_cancel SIGINT SIGTERM +cd `dirname $0` + # Read platforms/kerver version echo "Reading platforms" declare -A PLATFORMS @@ -15,6 +17,7 @@ while read PLATFORM KVER; do done <../PLATFORMS # Download toolkits +mkdir -p cache TOOLKIT_VER="7.0" for PLATFORM in ${!PLATFORMS[@]}; do echo -n "Checking cache/ds.${PLATFORM}-${TOOLKIT_VER}.dev.txz... "