1
0
Fork 0
mirror of synced 2026-06-05 13:45:14 +00:00
cache/__tests__/create-cache-files.sh
2020-05-12 17:14:33 -04:00

11 lines
No EOL
188 B
Bash
Executable file

#!/bin/sh
# Validate args
prefix="$1"
if [ -z "$prefix" ]; then
echo "Must supply prefix argument"
exit 1
fi
mkdir test-cache
echo "$prefix $GITHUB_RUN_ID" > test-cache/test-file.txt