nginx/.gitea/actions/checkout/__test__/verify-side-by-side.sh
huangzhiqiang c43c66b643
Some checks failed
Build NGINX on Ubuntu / build-and-deploy (push) Failing after 1s
use local git actions checkout
2025-06-10 12:28:33 +08:00

12 lines
258 B
Bash

#!/bin/bash
if [ ! -f "./side-by-side-1/side-by-side-test-file-1.txt" ]; then
echo "Expected file 1 does not exist"
exit 1
fi
if [ ! -f "./side-by-side-2/side-by-side-test-file-2.txt" ]; then
echo "Expected file 2 does not exist"
exit 1
fi