From 573208a47846d961f29539b9289d30f673e276e9 Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Fri, 22 Feb 2013 07:24:05 +0100 Subject: autoimport: first wait on the import Otherwise the import zombifies and curl blocks. --- autoimport.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'autoimport.py') diff --git a/autoimport.py b/autoimport.py index ec64761..6ce7146 100755 --- a/autoimport.py +++ b/autoimport.py @@ -28,10 +28,10 @@ def main(): print("importing %s" % name) dl = subprocess.Popen(["curl", "-s", pkgurl], stdout=subprocess.PIPE) imp = subprocess.Popen("./importpkg.py", stdin=dl.stdout) - if dl.wait(): - print("curl failed") if imp.wait(): print("import failed") + if dl.wait(): + print("curl failed") cur.execute("PRAGMA foreign_keys=1;") cur.executemany("DELETE FROM package WHERE package = ?;", -- cgit v1.2.3