mirror of
				https://github.com/SteamDeckHomebrew/decky-plugin-template.git
				synced 2025-10-31 15:22:26 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			No EOL
		
	
	
		
			100 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			No EOL
		
	
	
		
			100 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| set -e
 | |
| 
 | |
| echo "Container's IP address: `awk 'END{print $1}' /etc/hosts`"
 | |
| 
 | |
| cd /backend
 | |
| 
 | |
| make |