 fafee8898e
			
		
	
	
		fafee8898e
		
	
	
	
	
		
			
			# Objective Prevent some possible problem Found by IntelliJ IDEA ## Solution Double quoting variable and exit on possible failure of cd command.
		
			
				
	
	
		
			46 lines
		
	
	
		
			738 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			738 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # if crate A depends on crate B, B must come before A in this list
 | |
| crates=(
 | |
|     bevy_utils
 | |
|     bevy_macro_utils
 | |
|     bevy_derive
 | |
|     bevy_math
 | |
|     bevy_tasks
 | |
|     bevy_ecs/macros
 | |
|     bevy_ecs
 | |
|     bevy_app
 | |
|     bevy_log
 | |
|     bevy_dynamic_plugin
 | |
|     bevy_reflect/bevy_reflect_derive
 | |
|     bevy_reflect
 | |
|     bevy_asset
 | |
|     bevy_audio
 | |
|     bevy_core
 | |
|     bevy_diagnostic
 | |
|     bevy_transform
 | |
|     bevy_window
 | |
|     bevy_render
 | |
|     bevy_input
 | |
|     bevy_gilrs
 | |
|     bevy_pbr
 | |
|     bevy_gltf
 | |
|     bevy_scene
 | |
|     bevy_sprite
 | |
|     bevy_text
 | |
|     bevy_ui
 | |
|     bevy_winit
 | |
|     bevy_wgpu
 | |
|     bevy_internal
 | |
|     bevy_dylib
 | |
| )
 | |
| 
 | |
| cd crates
 | |
| for crate in "${crates[@]}"
 | |
| do
 | |
|   echo "Publishing ${crate}"
 | |
|   (cd "$crate"; cargo publish --no-verify)
 | |
|   sleep 20
 | |
| done
 | |
| 
 | |
| cd ..
 | |
| cargo publish
 |