From 7e6241622e14ec05254f90abbc34c6d1ef5f9183 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Wed, 16 Feb 2022 19:54:46 +0100 Subject: [PATCH] storebytecode.sh: Add a prefix to temporary dir name to make it easy to recognize --- scripts/bytecodecompare/storebytecode.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bytecodecompare/storebytecode.sh b/scripts/bytecodecompare/storebytecode.sh index 9a771dd0e..6efa94def 100755 --- a/scripts/bytecodecompare/storebytecode.sh +++ b/scripts/bytecodecompare/storebytecode.sh @@ -37,7 +37,7 @@ REPO_ROOT=$(pwd) # make it absolute BUILD_DIR="${1:-${REPO_ROOT}/build}" echo "Compiling all test contracts into bytecode..." -TMPDIR=$(mktemp -d) +TMPDIR=$(mktemp -d -t storebytecode_XXXXXX) ( cd "$TMPDIR"