Skip to content

Commit

Permalink
Builder|Fixed: File paths when signing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jun 7, 2012
1 parent 02c4542 commit 99af8d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distrib/autobuild.py
Expand Up @@ -99,7 +99,7 @@ def sign_packages():
for fn in os.listdir(ev.path()):
if fn.endswith('.exe') or fn.endswith('.dmg') or fn.endswith('.deb'):
# Make a signature for this.
os.system("gpg --output %s -ba %s" % (fn + '.gpg', fn))
os.system("gpg --output %s -ba %s" % (ev.file_path(fn) + '.gpg', ev.file_path(fn)))


def find_previous_tag(toTag, version):
Expand Down

0 comments on commit 99af8d0

Please sign in to comment.