mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 02:09:05 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			182 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			182 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
set -eux
 | 
						|
 | 
						|
cd $(dirname $0)/derive
 | 
						|
 | 
						|
cargo publish
 | 
						|
 | 
						|
cd ..
 | 
						|
 | 
						|
# Let the crates.io index figure out we've published `derive_arbitrary` already.
 | 
						|
sleep 5
 | 
						|
 | 
						|
cargo publish
 |