Surround natives path in quotes to ensure it works with usernames with spaces.
This commit is contained in:
		
							parent
							
								
									7bcc6b98ff
								
							
						
					
					
						commit
						40d895095f
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -90,7 +90,7 @@ public class RunConfig { | |||
| 	private static void populate(Project project, LoomGradleExtension extension, RunConfig runConfig, String mode) { | ||||
| 		runConfig.projectName = project.getName(); | ||||
| 		runConfig.runDir = "file://$PROJECT_DIR$/" + extension.runDir; | ||||
| 		runConfig.vmArgs = "-Dfabric.development=true -Djava.library.path=" + extension.getNativesDirectory().getAbsolutePath(); | ||||
| 		runConfig.vmArgs = "-Dfabric.development=true -Djava.library.path=\"" + extension.getNativesDirectory().getAbsolutePath()  + "\""; | ||||
| 
 | ||||
| 		switch (extension.getLoaderLaunchMethod()) { | ||||
| 			case "launchwrapper": | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue