mirror of
https://github.com/nushell/nushell.git
synced 2025-04-22 12:18:20 +02:00
Create config directory if it does not exist (#625)
Signed-off-by: nibon7 <nibon7@163.com>
This commit is contained in:
parent
56ae07adb9
commit
15b0424d73
@ -265,6 +265,13 @@ fn main() -> Result<()> {
|
|||||||
// Load config startup file
|
// Load config startup file
|
||||||
if let Some(mut config_path) = nu_path::config_dir() {
|
if let Some(mut config_path) = nu_path::config_dir() {
|
||||||
config_path.push("nushell");
|
config_path.push("nushell");
|
||||||
|
|
||||||
|
// Create config directory if it does not exist
|
||||||
|
if !config_path.exists() {
|
||||||
|
if let Err(err) = std::fs::create_dir_all(&config_path) {
|
||||||
|
eprintln!("Failed to create config directory: {}", err);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
config_path.push("config.nu");
|
config_path.push("config.nu");
|
||||||
|
|
||||||
if config_path.exists() {
|
if config_path.exists() {
|
||||||
@ -277,6 +284,7 @@ fn main() -> Result<()> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Get the config
|
// Get the config
|
||||||
let config = match stack.get_config() {
|
let config = match stack.get_config() {
|
||||||
|
Loading…
Reference in New Issue
Block a user