index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archinstall.py | 3 |
diff --git a/archinstall.py b/archinstall.py index a5e88700..29e32f73 100644 --- a/archinstall.py +++ b/archinstall.py @@ -52,6 +52,9 @@ def run(cmd): def update_git(): default_gw = get_default_gateway_linux() if(default_gw): + ## Not the most elegant way to make sure git conflicts doesn't occur (yea fml) + os.remove('/root/archinstall/archinstall.py') + os.remove('/root/archinstall/README.md') output = run('git pull') if b'error:' in output: |