You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
523 B
Bash
25 lines
523 B
Bash
#!/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
|