Revert #987 behavior on macos (#1007)

This commit is contained in:
Christian Duerr 2018-01-08 04:46:11 +00:00 committed by Joe Wilm
parent c93d2b1a2d
commit cc07624e99
1 changed files with 6 additions and 0 deletions

View File

@ -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();