index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Pyfisch <pyfisch@posteo.org> | 2021-04-05 15:30:18 +0200 |
---|---|---|
committer | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-04-08 09:20:39 -0400 |
commit | 5bc9ab3aacf86355801d44f3e99f478454dd1aa9 (patch) | |
tree | 7e0d277a3b2529ed0989aa22d984a387dbed6b3f /archinstall | |
parent | 5a07bfbebd7d16898a2426627d609bd604c03063 (diff) |
-rw-r--r-- | archinstall/__init__.py | 4 |
diff --git a/archinstall/__init__.py b/archinstall/__init__.py index d4452d38..c2773b64 100644 --- a/archinstall/__init__.py +++ b/archinstall/__init__.py @@ -14,6 +14,8 @@ from .lib.output import * from .lib.storage import * from .lib.hardware import * +__version__ = "2.1.3" + ## Basic version of arg.parse() supporting: ## --key=value ## --boolean @@ -27,4 +29,4 @@ for arg in sys.argv[1:]: key, val = arg[2:], True arguments[key] = val else: - positionals.append(arg)
\ No newline at end of file + positionals.append(arg) |