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

Commit

Permalink
Fix scanning for installed apps on macOS (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
quanglam2807 committed Apr 1, 2018
1 parent 717ae24 commit b2b0617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/libs/get-installation-path.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const path = require('path');

const getInstallationPath = () => {
if (process.platform === 'darwin') {
path.join(app.getPath('home'), 'Applications', 'Juli Apps');
return path.join(app.getPath('home'), 'Applications', 'Juli Apps');
}

return path.join(app.getPath('home'), '.juli', 'apps');
Expand Down

0 comments on commit b2b0617

Please sign in to comment.