Skip to content

Commit

Permalink
unify app bundle names.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkassner committed Apr 19, 2016
1 parent ec86885 commit 0eb04f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions deploy_capture/finalize_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
shutil.rmtree('dist/Pupil Capture')
print 'removed the non-app dist bundle'

bundle_name = 'Pupil Capture %s MacOS'%dpkg_deb_version()
bundle_name = 'pupil_capture_mac_os_x64_v%s'%dpkg_deb_version()
bundle_dmg_name = 'Install Pupil Capture'
src_dir = 'dist'
bundle_app_dir = os.path.join(src_dir,'Pupil Capture.app/' )
Expand Down Expand Up @@ -54,7 +54,7 @@
pass

#lets build the structure for our deb package.
deb_root = 'pupil_capture_%s'%dpkg_deb_version()
deb_root = 'pupil_capture_linux_os_x64_v%s'%dpkg_deb_version()
DEBIAN_dir = os.path.join(deb_root,'DEBIAN')
opt_dir = os.path.join(deb_root,'opt')
bin_dir = os.path.join(deb_root,'usr','bin')
Expand Down
4 changes: 2 additions & 2 deletions deploy_player/finalize_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
with open("dist/Pupil Player.app/Contents/Info.plist", "w") as f:
f.write(txt)

bundle_name = 'Pupil Player %s MacOS'%dpkg_deb_version()
bundle_name = 'pupil_player_mac_os_x64_v%s'%dpkg_deb_version()
bundle_dmg_name = 'Install Pupil Player'
src_dir = 'dist'
bundle_app_dir = os.path.join(src_dir,'Pupil Player.app/' )
Expand Down Expand Up @@ -89,7 +89,7 @@
pass

#lets build the structure for our deb package.
deb_root = 'pupil_player_%s'%dpkg_deb_version()
deb_root = 'pupil_player_linux_os_x64_v%s'%dpkg_deb_version()
DEBIAN_dir = os.path.join(deb_root,'DEBIAN')
opt_dir = os.path.join(deb_root,'opt')
bin_dir = os.path.join(deb_root,'usr','bin')
Expand Down

0 comments on commit 0eb04f7

Please sign in to comment.