Some checks failed
Check dist / check-dist (push) Has been cancelled
Licensed / Check licenses (push) Has been cancelled
Build and Test / build (push) Has been cancelled
Build and Test / test (macos-latest) (push) Has been cancelled
Build and Test / test (ubuntu-latest) (push) Has been cancelled
Build and Test / test (windows-latest) (push) Has been cancelled
Build and Test / test-proxy (push) Has been cancelled
Build and Test / test-bypass-proxy (push) Has been cancelled
Build and Test / test-git-container (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Failing after 3s
25 lines
523 B
Bash
Executable File
25 lines
523 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -f "./basic/basic-file.txt" ]; then
|
|
echo "Expected basic file does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$1" = "--archive" ]; then
|
|
# Verify no .git folder
|
|
if [ -d "./basic/.git" ]; then
|
|
echo "Did not expect ./basic/.git folder to exist"
|
|
exit 1
|
|
fi
|
|
else
|
|
# Verify .git folder
|
|
if [ ! -d "./basic/.git" ]; then
|
|
echo "Expected ./basic/.git folder to exist"
|
|
exit 1
|
|
fi
|
|
|
|
# Verify auth token
|
|
cd basic
|
|
git fetch --no-tags --depth=1 origin +refs/heads/main:refs/remotes/origin/main
|
|
fi
|