mirror of
				https://github.com/Laupetin/OpenAssetTools.git
				synced 2025-10-31 02:26:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			157 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			157 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- Platform functions
 | |
| function ExecutableByOs(name)
 | |
|     if os.host() == "windows" then
 | |
|         return name .. ".exe"
 | |
|     else
 | |
|         return name
 | |
|     end
 | |
| end |