mirror of
				https://github.com/tobspr/shapez.io.git
				synced 2025-06-13 13:04:03 +00:00 
			
		
		
		
	Further mac os fixes
This commit is contained in:
		
							parent
							
								
									830a1d6184
								
							
						
					
					
						commit
						0d74af92a7
					
				@ -158,7 +158,7 @@ function gulptasksStandalone($, gulp, buildFolder) {
 | 
			
		||||
 | 
			
		||||
                    fs.writeFileSync(path.join(appPath, ".itch.toml"), tomlFile);
 | 
			
		||||
 | 
			
		||||
                    if (platform === "linux" || platform === "darwin") {
 | 
			
		||||
                    if (platform === "linux") {
 | 
			
		||||
                        fs.writeFileSync(
 | 
			
		||||
                            path.join(appPath, "play.sh"),
 | 
			
		||||
                            '#!/usr/bin/env bash\n./shapezio --no-sandbox "$@"\n'
 | 
			
		||||
@ -181,6 +181,15 @@ function gulptasksStandalone($, gulp, buildFolder) {
 | 
			
		||||
 | 
			
		||||
                    if (platform === "darwin") {
 | 
			
		||||
                        // Clear up framework folders
 | 
			
		||||
                        fs.writeFileSync(
 | 
			
		||||
                            path.join(appPath, "play.sh"),
 | 
			
		||||
                            '#!/usr/bin/env bash\n./shapez.io-standalone.app/Contents/MacOS/shapezio --no-sandbox "$@"\n'
 | 
			
		||||
                        );
 | 
			
		||||
                        fs.chmodSync(path.join(appPath, "play.sh"), 0o775);
 | 
			
		||||
                        fs.chmodSync(
 | 
			
		||||
                            path.join(appPath, "shapez.io-standalone.app", "Contents", "MacOS", "shapezio"),
 | 
			
		||||
                            0o775
 | 
			
		||||
                        );
 | 
			
		||||
 | 
			
		||||
                        const finalPath = path.join(appPath, "shapez.io-standalone.app");
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user