index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archinstall.py | 4 |
diff --git a/archinstall.py b/archinstall.py index 7389d148..086585fb 100644 --- a/archinstall.py +++ b/archinstall.py @@ -749,9 +749,9 @@ def get_instructions(target, *positionals, **kwargs): except urllib.error.HTTPError: print('[N] Could not find remote instructions. Trying local instructions under ./deployments') log(f'Could not find remote instructions. Trying local instructions under ./deployments', level=4, origin='get_instructions') - isntructions = get_local_instructions(target, *positionals) + instructions = get_local_instructions(target, *positionals) else: - isntructions = get_local_instructions(target, *positionals) + instructions = get_local_instructions(target, *positionals) if type(instructions) not in (dict, oDict,): try: |