From 3e2b97c4881f75aaebbf0c8e95ab7d6e582649f4 Mon Sep 17 00:00:00 2001 From: mirkobrombin Date: Sun, 11 Sep 2022 17:14:03 +0200 Subject: [PATCH] 0.1.2 fix wrong var name --- VERSION | 2 +- debian/changelog | 2 +- meson.build | 2 +- vanilla_first_setup/main.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 6da28dd..8294c18 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.1 \ No newline at end of file +0.1.2 \ No newline at end of file diff --git a/debian/changelog b/debian/changelog index 5905444..ab157fe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -vanilla-first-setup (0.1.1) jammy; urgency=low +vanilla-first-setup (0.1.2) jammy; urgency=low * First release diff --git a/meson.build b/meson.build index e477862..77d5402 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('io.github.vanilla-os.FirstSetup', - version: '0.1.1', + version: '0.1.2', meson_version: '>= 0.59.0', default_options: [ 'warning_level=2', 'werror=false', diff --git a/vanilla_first_setup/main.py b/vanilla_first_setup/main.py index 6d6d88a..7b818e5 100644 --- a/vanilla_first_setup/main.py +++ b/vanilla_first_setup/main.py @@ -124,7 +124,7 @@ class FirstSetupApplication(Adw.Application): def main(version): """The application's entry point.""" - if os.env.get("USERNAME") in ["ubuntu", "vanillaos", "vanilla-os"]: + if os.environ.get("USERNAME") in ["ubuntu", "vanillaos", "vanilla-os"]: logging.warning("Running in Live mode, closing...") sys.exit(0)