mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 07:22:45 +00:00 
			
		
		
		
	 ad4284428a
			
		
	
	
		ad4284428a
		
	
	
	
	
		
			
			I often keep my terminal camped in the project root directory and run `make && ./Kernel/sync.sh && ./Kernel/run` This change allows me to not feel like a doofus when I do that :^)
		
			
				
	
	
		
			5 lines
		
	
	
	
		
			127 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
	
		
			127 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
 | |
| cd "$script_path"
 | |
| 
 | |
| sudo -E PATH="$PATH" ./build-image-qemu.sh
 |