From b8d471620688a0f79a790fb1e23989b300857874 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Fri, 4 Sep 2020 15:22:28 +0200 Subject: [PATCH] Put define_os after self.hide_commands --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index 37b25f3..e8ba4fb 100755 --- a/install.py +++ b/install.py @@ -29,11 +29,11 @@ class Installer: self.conf = yaml.load(Path("configs.yml").text()) self.base_dir = Path.getcwd() self.home = Path("~").expanduser() - self.operating_system = self.define_os() self.force = force self.first_install = first_install self.update = update self.hide_commands = hide_commands + self.operating_system = self.define_os() def define_os(self) -> str: """Define what OS we are using."""