diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-01-06 20:12:29 +0000 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2018-01-06 12:12:29 -0800 |
commit | b600e40c8f8caa6f29016a3bbf4194dbecbe237a (patch) | |
tree | d71fb78837b974a107d9559fcfed1d335db30aaf | |
parent | c44f56e56e8178fbf01e965d28e3679fdf541e16 (diff) | |
download | alacritty-b600e40c8f8caa6f29016a3bbf4194dbecbe237a.tar.gz alacritty-b600e40c8f8caa6f29016a3bbf4194dbecbe237a.zip |
Honour working dir on linux (#987)
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index bb267ed4..6c1ea056 100644 --- a/src/main.rs +++ b/src/main.rs @@ -30,7 +30,6 @@ extern crate log; use std::error::Error; use std::sync::Arc; -use std::env; use alacritty::cli; use alacritty::config::{self, Config}; @@ -50,8 +49,6 @@ fn main() { let options = cli::Options::load(); let config = load_config(&options); - // Switch to home directory - env::set_current_dir(env::home_dir().unwrap()).unwrap(); #[cfg(target_os = "macos")] locale::set_locale_environment(); |