mirror of
				https://github.com/sammy-ette/Hilbish
				synced 2025-08-10 02:52:03 +00:00 
			
		
		
		
	fix: create directory for hist dir if it doesnt exist
This commit is contained in:
		
							parent
							
								
									9165e0bdf9
								
							
						
					
					
						commit
						605574f262
					
				
							
								
								
									
										9
									
								
								main.go
									
									
									
									
									
								
							
							
						
						
									
										9
									
								
								main.go
									
									
									
									
									
								
							| @ -55,12 +55,12 @@ func main() { | ||||
| 		defaultConfPath = filepath.Join(confDir, "hilbish", "init.lua") | ||||
| 	} else { | ||||
| 		// else do ~ substitution | ||||
| 		defaultConfPath = filepath.Join(strings.Replace(defaultConfDir, "~", homedir, 1), "init.lua") | ||||
| 		defaultConfPath = filepath.Join(expandHome(defaultHistDir), "init.lua") | ||||
| 	} | ||||
| 	if defaultHistDir == "" { | ||||
| 		defaultHistPath = filepath.Join(userDataDir, "hilbish", ".hilbish-history") | ||||
| 	} else { | ||||
| 		defaultHistPath = filepath.Join(strings.Replace(defaultHistDir, "~", homedir, 1), ".hilbish-history") | ||||
| 		defaultHistPath = filepath.Join(expandHome(defaultHistDir), ".hilbish-history") | ||||
| 	} | ||||
| 	helpflag := getopt.BoolLong("help", 'h', "Prints Hilbish flags") | ||||
| 	verflag := getopt.BoolLong("version", 'v', "Prints Hilbish version") | ||||
| @ -263,3 +263,8 @@ func handleHistory(cmd string) { | ||||
| 	// TODO: load history again (history shared between sessions like this ye) | ||||
| } | ||||
| 
 | ||||
| func expandHome(path string) string { | ||||
| 	homedir := curuser.HomeDir | ||||
| 
 | ||||
| 	return strings.Replace(defaultHistDir, "~", homedir, 1) | ||||
| } | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user