From cc07624e99dfa9ba7d1c70bfc7018e63808b4ae1 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Mon, 8 Jan 2018 04:46:11 +0000 Subject: [PATCH] Revert #987 behavior on macos (#1007) --- src/main.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main.rs b/src/main.rs index 6c1ea056..4b24b1a5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -30,6 +30,8 @@ extern crate log; use std::error::Error; use std::sync::Arc; +#[cfg(target_os = "macos")] +use std::env; use alacritty::cli; use alacritty::config::{self, Config}; @@ -49,6 +51,10 @@ fn main() { let options = cli::Options::load(); let config = load_config(&options); + // Switch to home directory + #[cfg(target_os = "macos")] + env::set_current_dir(env::home_dir().unwrap()).unwrap(); + // Set locale #[cfg(target_os = "macos")] locale::set_locale_environment();