Skip to content
This repository has been archived by the owner on Sep 26, 2022. It is now read-only.

Commit

Permalink
Merge branch 'fix-issue-71'
Browse files Browse the repository at this point in the history
  • Loading branch information
JMSwag committed Jun 4, 2017
2 parents 012effc + 8d84a6d commit e79e2fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyupdater/client/updates.py
Expand Up @@ -630,7 +630,7 @@ def _overwrite(self):
app_update = os.path.join(self.update_folder, self.name)

# Must be dealing with Mac .app application
if not os.path.exists(app_update):
if not os.path.exists(app_update) and sys.platform == "darwin":
app_update += '.app'

log.debug('Update Location:\n%s', os.path.dirname(app_update))
Expand Down

0 comments on commit e79e2fd

Please sign in to comment.