summarylogtreecommitdiffstats
path: root/main.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main.patch')
-rw-r--r--main.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/main.patch b/main.patch
deleted file mode 100644
index fda09c86b85e..000000000000
--- a/main.patch
+++ /dev/null
@@ -1,38 +0,0 @@
---- src/system76/src/main.rs 2018-09-21 21:38:37.639982440 -0700
-+++ src/system76/src/main.rs.new 2018-09-21 21:38:34.933315808 -0700
-@@ -110,22 +110,21 @@
- )
- )
- .get_matches();
--
-- if let Err(why) = logging::setup_logging(
-- if matches.is_present("verbose") {
-- LevelFilter::Debug
-- } else if matches.is_present("quiet") {
-- LevelFilter::Off
-- } else {
-- LevelFilter::Info
-- }
-- ) {
-- eprintln!("failed to set up logging: {}", why);
-- process::exit(1);
-- }
-
- let res = match matches.subcommand() {
-- ("daemon", Some(_matches)) => {
-+ ("daemon", Some(matches)) => {
-+ if let Err(why) = logging::setup_logging(
-+ if matches.is_present("verbose") {
-+ LevelFilter::Debug
-+ } else if matches.is_present("quiet") {
-+ LevelFilter::Off
-+ } else {
-+ LevelFilter::Info
-+ }
-+ ) {
-+ eprintln!("failed to set up logging: {}", why);
-+ process::exit(1);
-+ }
- if unsafe { libc::geteuid() } == 0 {
- daemon::daemon(matches.is_present("experimental"))
- } else {