From 9a2495c66e2f0896fbd2ee633d28a391d5d53334 Mon Sep 17 00:00:00 2001 From: gabriel klawitter Date: Mon, 3 Feb 2020 16:53:20 +0100 Subject: [PATCH] ci: fix check_runtime on busybox (#820) --- polkadot/scripts/gitlab/check_runtime.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/scripts/gitlab/check_runtime.sh b/polkadot/scripts/gitlab/check_runtime.sh index 10db3ce392..2169289b5c 100755 --- a/polkadot/scripts/gitlab/check_runtime.sh +++ b/polkadot/scripts/gitlab/check_runtime.sh @@ -89,7 +89,7 @@ then EOT # okay so now need to fetch the substrate repository and check whether spec_version or impl_version has changed there - SUBSTRATE_CLONE_DIR="$(mktemp -t -d substrate-XXX)" + SUBSTRATE_CLONE_DIR="$(mktemp -t -d substrate-XXXXXX)" trap "rm -rf ${SUBSTRATE_CLONE_DIR}" INT QUIT TERM ABRT EXIT