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'])