mirror of
				https://codeberg.org/hako/Rosenthal.git
				synced 2025-11-04 11:44:48 +00:00 
			
		
		
		
	* .gitattributes: New file. * .guix-authorizations: New file. * .guix-channel: New file. * LICENSES/GPL-3.0.txt: New file. * pre-inst-env: New file.
		
			
				
	
	
		
			11 lines
		
	
	
		
			287 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			287 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
abs_rosenthal_dir="$(dirname "$(realpath "$0")")"
 | 
						|
 | 
						|
GUILE_LOAD_PATH="${abs_rosenthal_dir}${GUILE_LOAD_PATH:+:}${GUILE_LOAD_PATH}"
 | 
						|
GUIX_PACKAGE_PATH="${abs_rosenthal_dir}${GUIX_PACKAGE_PATH:+:}${GUIX_PACKAGE_PATH}"
 | 
						|
 | 
						|
export GUILE_LOAD_PATH GUIX_PACKAGE_PATH
 | 
						|
 | 
						|
exec "$@"
 |