Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
matysek committed Jan 3, 2015
2 parents df2469b + e03f5f4 commit b4b5d62
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions PyInstaller/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -854,6 +854,8 @@ def checkCache(fnm, strip=False, upx=False, dist_nm=None):
strip_options = ["-S"]
cmd = ["strip"] + strip_options + [cachedfile]

if not os.path.exists(os.path.dirname(cachedfile)):
os.makedirs(os.path.dirname(cachedfile))
shutil.copy2(fnm, cachedfile)
os.chmod(cachedfile, 0755)

Expand Down

0 comments on commit b4b5d62

Please sign in to comment.