Skip to content

Commit

Permalink
Fixed the proj_download_url to match github release urls
Browse files Browse the repository at this point in the history
  • Loading branch information
fikovnik committed Apr 27, 2015
1 parent 378057b commit 6424380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def _load_github_token():
proj_archive_name = proj_name + '-' + proj_version + '.zip'
proj_archive_path = os.path.join(proj_build_dir, proj_archive_name)

proj_download_url = 'https://github.com/downloads/fikovnik/ShiftIt/'+proj_archive_name
proj_download_url = 'https://github.com/fikovnik/ShiftIt/releases/download/version-%s/%s' % (proj_version, proj_archive_name)
proj_release_notes_url = 'http://htmlpreview.github.com/?https://raw.github.com/fikovnik/ShiftIt/master/release/release-notes-'+proj_version+'.html'
proj_release_notes_html_file = os.path.join(os.getcwd(),'release','release-notes-'+proj_version+'.html')
proj_appcast_file = os.path.join(os.getcwd(),'release','appcast.xml')
Expand Down

0 comments on commit 6424380

Please sign in to comment.