From 38daa3d172af97e9af3655f9537c3d97cf3cfd1d Mon Sep 17 00:00:00 2001 From: Igor Gassmann Date: Wed, 6 Dec 2017 18:43:11 -0300 Subject: [PATCH] Fix Mac .dmg file location --- build/upload_assets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/upload_assets.py b/build/upload_assets.py index ed40c9ec7..2ba8b56b5 100644 --- a/build/upload_assets.py +++ b/build/upload_assets.py @@ -19,7 +19,7 @@ def get_asset_filename(): this_dir = os.path.dirname(os.path.realpath(__file__)) system = platform.system() if system == 'Darwin': - return glob.glob(this_dir + '/../dist/mac/LBRY*.dmg')[0] + return glob.glob(this_dir + '/../dist/LBRY*.dmg')[0] elif system == 'Linux': return glob.glob(this_dir + '/../dist/LBRY*.deb')[0] elif system == 'Windows':