mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 14:52:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			104 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			104 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build !windows
 | 
						|
 | 
						|
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"os"
 | 
						|
)
 | 
						|
 | 
						|
func homeDir() string {
 | 
						|
	return os.Getenv("HOME")
 | 
						|
}
 |