This repository has been archived on 2025-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
checkout/__test__/verify-side-by-side.sh

12 lines
258 B
Bash
Raw Permalink Normal View History

2025-06-05 13:07:41 +08:00
#!/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