Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2019-06-20 18:23:20 +0000
committerAnton Hvornum <anton.feeds@gmail.com>2019-06-20 18:23:20 +0000
commiteb3a846be83e42a2947f34b2319cca191117a45d (patch)
treefb71f44e0bda5c9216c496d4ca339a8c3ed75d7d
parent41127daf589590ef279cfa3142ac41fdeeb5526f (diff)
Recursive bomb issue
-rw-r--r--archinstall.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index 7bf82b8e..df0525cd 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -262,7 +262,8 @@ def update_git():
if os.path.isfile('/root/archinstall/README.md'):
os.remove('/root/archinstall/README.md')
- output = simple_command('(cd /root/archinstall; git reset --hard origin/$(git branch | grep "*" | cut -d\' \' -f 2); git pull)')
+ #output = simple_command('(cd /root/archinstall; git reset --hard origin/$(git branch | grep "*" | cut -d\' \' -f 2); git pull)')
+ output = simple_command('(cd /root/archinstall; git pull)')
if b'error:' in output:
print('[N] Could not update git source for some reason.')