mirror of
https://github.com/actions/checkout.git
synced 2026-01-19 22:49:37 +08:00
6 lines
119 B
Bash
Executable file
6 lines
119 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -f "./main_path_test/basic-file.txt" ]; then
|
|
echo "Expected file does not exist"
|
|
exit 1
|
|
fi
|