0
1
Fork 0
mirror of https://github.com/actions/checkout synced 2024-07-02 16:42:40 +02:00
checkout/__test__/verify-sparse-checkout-basic.sh
2023-05-02 19:41:51 +02:00

23 lines
476 B
Bash
Executable file

#!/bin/bash
SPARSE=$(git sparse-checkout list)
if [ "$?" != "0" ]; then
echo "Failed to validate sparse-checkout"
exit 1
fi
# Check that sparse-checkout list is not empty
if [ -z "$SPARSE" ]; then
echo "Expected sparse-checkout list to not be empty"
exit 1
fi
# Check that all folders from sparse-checkout exists
for pattern in $(git sparse-checkout list)
do
if [ ! -d "$pattern" ]; then
echo "Expected directory '$pattern' to exist"
exit 1
fi
done