Skip to content

Instantly share code, notes, and snippets.

@tjfontaine
Created March 1, 2013 21:46
Show Gist options
  • Save tjfontaine/5068092 to your computer and use it in GitHub Desktop.
Save tjfontaine/5068092 to your computer and use it in GitHub Desktop.
if system == 'Windows':
if target_arch == 'ia32':
target_arch = 'x86'
os.environ['VS100COMNTOOLS'] = r'g:\vs2010\common7\tools'
p = Popen([r"g:\jenkins\buildwrap.bat", target_arch, "release", "nosign", "msi"])
elif system == 'Darwin':
p = Popen(['make', 'STEP=1', 'pkg'])
else:
p = Popen(['make', 'binary'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment