Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2019-11-29 13:54:17 +0100
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-29 13:54:17 +0100
commit30e45d57a1829196fdbf1ba8eaaafa16f8e9996a (patch)
treed8de446fead45e3a2730fd6bebce19319b98609e /archinstall.py
parentef117744cbebc98ba6aed31e4b47de0e73ae1349 (diff)
Added --minimal to skip profile lookups completely. #29
Diffstat (limited to 'archinstall.py')
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index d514b283..8437575c 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -1138,7 +1138,7 @@ if __name__ == '__main__':
## == If we got networking,
# Try fetching instructions for this box unless a specific profile was given, and execute them.
- if args['profile'] is None:
+ if args['profile'] is None and not args['minimal']:
instructions = load_automatic_instructions()
elif args['profile'] and not args['minimal']: