From 6be1e2cad5bedfad13937085351350bff57dc2c4 Mon Sep 17 00:00:00 2001 From: j Date: Wed, 13 Jan 2016 10:58:42 +0530 Subject: [PATCH] create updates folder, open oml in background --- install | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install b/install index c199a7a..cfd0e9b 100755 --- a/install +++ b/install @@ -116,6 +116,7 @@ class Install(Thread): os.system('./ctl install_launcher') with open('config/release.json', 'w') as fd: json.dump(release, fd, indent=2) + os.makedirs('updates') os.system('./ctl setup') self.status['progress'] = 1 self.status['done'] = True @@ -168,4 +169,4 @@ if __name__ == '__main__': install = Install(target) install.join() if not install.failed: - subprocess.call([os.path.join(target, 'ctl'), 'open']) + subprocess.Popen([os.path.join(target, 'ctl'), 'open'])