Fix Mac .dmg file location

This commit is contained in:
Igor Gassmann 2017-12-06 18:43:11 -03:00
parent 0b81d6e96c
commit 38daa3d172

View file

@ -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':