mirror of
				https://github.com/yeslayla/build-godot-action.git
				synced 2025-11-04 08:13:04 +01:00 
			
		
		
		
	Allow Spaces in projectDir (#21)
				
					
				
			* try to fix the space issue * change project dir * spaced preset name
This commit is contained in:
		@ -19,8 +19,8 @@ fi
 | 
				
			|||||||
# Export for project
 | 
					# Export for project
 | 
				
			||||||
echo "Building $1 for $2"
 | 
					echo "Building $1 for $2"
 | 
				
			||||||
mkdir -p $GITHUB_WORKSPACE/build/${SubDirectoryLocation:-""}
 | 
					mkdir -p $GITHUB_WORKSPACE/build/${SubDirectoryLocation:-""}
 | 
				
			||||||
cd ${5-"$GITHUB_WORKSPACE"}
 | 
					cd "$GITHUB_WORKSPACE/$5"
 | 
				
			||||||
godot --${mode} $2 $GITHUB_WORKSPACE/build/${SubDirectoryLocation:-""}$1
 | 
					godot --${mode} "$2" $GITHUB_WORKSPACE/build/${SubDirectoryLocation:-""}$1
 | 
				
			||||||
echo "Build Done"
 | 
					echo "Build Done"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo ::set-output name=build::build/${SubDirectoryLocation:-""}
 | 
					echo ::set-output name=build::build/${SubDirectoryLocation:-""}
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user