temporary root files have been read but creating outputs before the store directory has been read.
		
			
				
	
	
		
			9 lines
		
	
	
		
			No EOL
		
	
	
		
			193 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			No EOL
		
	
	
		
			193 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
export PATH=/bin:/usr/bin:$PATH
 | 
						|
 | 
						|
mkdir $out
 | 
						|
echo $(cat $input1/foo)$(cat $input2/bar)xyzzy > $out/foobar
 | 
						|
 | 
						|
# Check that the GC hasn't deleted the lock on our output.
 | 
						|
test -e "$out.lock"
 | 
						|
 | 
						|
sleep 3 |