mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 13:29:10 +08:00 
			
		
		
		
	Add path argument to verify-cache-files.sh
This commit is contained in:
		@@ -7,6 +7,12 @@ if [ -z "$prefix" ]; then
 | 
				
			|||||||
  exit 1
 | 
					  exit 1
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					path="$2"
 | 
				
			||||||
 | 
					if [ -z "$path" ]; then
 | 
				
			||||||
 | 
					  echo "Must specify path argument"
 | 
				
			||||||
 | 
					  exit 1
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Sanity check GITHUB_RUN_ID defined
 | 
					# Sanity check GITHUB_RUN_ID defined
 | 
				
			||||||
if [ -z "$GITHUB_RUN_ID" ]; then
 | 
					if [ -z "$GITHUB_RUN_ID" ]; then
 | 
				
			||||||
  echo "GITHUB_RUN_ID not defined"
 | 
					  echo "GITHUB_RUN_ID not defined"
 | 
				
			||||||
@@ -14,7 +20,7 @@ if [ -z "$GITHUB_RUN_ID" ]; then
 | 
				
			|||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Verify file exists
 | 
					# Verify file exists
 | 
				
			||||||
file="test-cache/test-file.txt"
 | 
					file="$path/test-file.txt"
 | 
				
			||||||
echo "Checking for $file"
 | 
					echo "Checking for $file"
 | 
				
			||||||
if [ ! -e $file ]; then
 | 
					if [ ! -e $file ]; then
 | 
				
			||||||
  echo "File does not exist"
 | 
					  echo "File does not exist"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user