Skip to content

Commit

Permalink
perms
Browse files Browse the repository at this point in the history
  • Loading branch information
mcrowson committed Aug 4, 2017
1 parent 2696d9b commit 6551e34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zappa/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ def splitpath(path):
archivef.writestr(zipi, f.read(), compression_method)
elif archive_format == 'tarball':
tarinfo = tarfile.TarInfo(os.path.join(root.replace(temp_project_path, '').lstrip(os.sep), filename))
tarinfo.mode = 0755
tarinfo.mode = 0o755
archivef.addfile(tarinfo, os.path.join(root, filename))

# Create python init file if it does not exist
Expand Down

0 comments on commit 6551e34

Please sign in to comment.