Add path argument to create-cache-files.sh

This commit is contained in:
David Hadka
2020-04-07 23:29:07 -04:00
committed by GitHub
parent 4a724707e9
commit 64f8769515

View File

@ -7,5 +7,11 @@ if [ -z "$prefix" ]; then
exit 1
fi
mkdir test-cache
echo "$prefix $GITHUB_RUN_ID" > test-cache/test-file.txt
path="$2"
if [ -z "$path" ]; then
echo "Must supply path argument"
exit 1
fi
mkdir -p $path
echo "$prefix $GITHUB_RUN_ID" > $path/test-file.txt