storebytecode.sh: Add a prefix to temporary dir name to make it easy to recognize

This commit is contained in:
Kamil Śliwak 2022-02-16 19:54:46 +01:00
parent 9e117bd93b
commit 7e6241622e

View File

@ -37,7 +37,7 @@ REPO_ROOT=$(pwd) # make it absolute
BUILD_DIR="${1:-${REPO_ROOT}/build}" BUILD_DIR="${1:-${REPO_ROOT}/build}"
echo "Compiling all test contracts into bytecode..." echo "Compiling all test contracts into bytecode..."
TMPDIR=$(mktemp -d) TMPDIR=$(mktemp -d -t storebytecode_XXXXXX)
( (
cd "$TMPDIR" cd "$TMPDIR"