From 0eb04f73011bdb9ef84068470e60c6bbe3e98655 Mon Sep 17 00:00:00 2001 From: Moritz Kassner Date: Tue, 19 Apr 2016 17:22:13 +0200 Subject: [PATCH] unify app bundle names. --- deploy_capture/finalize_bundle.py | 4 ++-- deploy_player/finalize_bundle.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy_capture/finalize_bundle.py b/deploy_capture/finalize_bundle.py index dcb0c09beb..a0914e537a 100644 --- a/deploy_capture/finalize_bundle.py +++ b/deploy_capture/finalize_bundle.py @@ -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/' ) @@ -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') diff --git a/deploy_player/finalize_bundle.py b/deploy_player/finalize_bundle.py index 70c55bd9a1..364e06fee2 100644 --- a/deploy_player/finalize_bundle.py +++ b/deploy_player/finalize_bundle.py @@ -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/' ) @@ -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')