Some checks failed
Tests / build (macOS-latest) (push) Has been cancelled
Tests / build (ubuntu-latest) (push) Has been cancelled
Check dist/ / Check dist/ (push) Has been cancelled
Code scanning - action / CodeQL-Build (push) Has been cancelled
Licensed / Licensed (push) Has been cancelled
Tests / build (windows-latest) (push) Has been cancelled
Tests / test-save (macOS-latest) (push) Has been cancelled
Tests / test-save (ubuntu-latest) (push) Has been cancelled
Tests / test-save (windows-latest) (push) Has been cancelled
Tests / test-restore (macOS-latest) (push) Has been cancelled
Tests / test-restore (ubuntu-latest) (push) Has been cancelled
Tests / test-restore (windows-latest) (push) Has been cancelled
Tests / test-proxy-save (push) Has been cancelled
Tests / test-proxy-restore (push) Has been cancelled
Close inactive issues / close-issues (push) Has been cancelled
37 lines
660 B
Bash
37 lines
660 B
Bash
#!/bin/sh
|
|
|
|
# Validate args
|
|
prefix="$1"
|
|
if [ -z "$prefix" ]; then
|
|
echo "Must supply prefix argument"
|
|
exit 1
|
|
fi
|
|
|
|
path="$2"
|
|
if [ -z "$path" ]; then
|
|
echo "Must specify path argument"
|
|
exit 1
|
|
fi
|
|
|
|
# Sanity check GITHUB_RUN_ID defined
|
|
if [ -z "$GITHUB_RUN_ID" ]; then
|
|
echo "GITHUB_RUN_ID not defined"
|
|
exit 1
|
|
fi
|
|
|
|
# Verify file exists
|
|
file="$path/test-file.txt"
|
|
echo "Checking for $file"
|
|
if [ ! -e $file ]; then
|
|
echo "File does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
# Verify file content
|
|
content="$(cat $file)"
|
|
echo "File content:\n$content"
|
|
if [ -z "$(echo $content | grep --fixed-strings "$prefix $GITHUB_RUN_ID")" ]; then
|
|
echo "Unexpected file content"
|
|
exit 1
|
|
fi
|