mirror of
				https://hub.gitmirror.com/https://github.com/actions/checkout.git
				synced 2025-10-28 16:40:04 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			258 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			258 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/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
 | 
