Skip to content

Commit

Permalink
Fix the package being broken on Linux (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Monier authored Jun 8, 2021
1 parent 02a89ad commit 1ff2e22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if (process.platform === 'darwin') {
} else if (process.platform === 'win32') {
wallpaper = require('./source/windows.js');
} else {
wallpaper = require('./source/linux.js');
wallpaper = require('./source/linux/index.js');
}

module.exports = wallpaper;
Expand Down
2 changes: 1 addition & 1 deletion source/linux/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';
const path = require('path');
const managers = require('./background-managers.js');
const managers = require('./background-managers/index.js');

let availableApps;

Expand Down

0 comments on commit 1ff2e22

Please sign in to comment.