mirror of
https://github.com/actions/checkout.git
synced 2024-11-14 06:39:19 +08:00
7 lines
119 B
Bash
7 lines
119 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ ! -f "./main_path_test/basic-file.txt" ]; then
|
||
|
echo "Expected file does not exist"
|
||
|
exit 1
|
||
|
fi
|