Fix install cx_freeze

This commit is contained in:
Bruno Oliveira 2015-09-17 23:32:27 -03:00
parent 3a8e375efe
commit e4d5f88257
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ if __name__ == '__main__':
with open(setup_py_filename, 'w') as f:
f.writelines(lines)
os.chdir('%s/%s' % (basename, rootdir))
os.chdir('%s/%s' % (rootdir, basename))
res = os.system('python setup.py install')
if res != 0:
sys.exit(res)