Skip to content

Commit 6cba48e

Browse files
committed
Remove multi-arch structure
1 parent 1727b80 commit 6cba48e

File tree

19 files changed

+71
-85
lines changed

19 files changed

+71
-85
lines changed

lib/commands/install.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const install = require('../install/macos');
3+
const installation = require('../installation');
44

55
module.exports = /** @type {import('yargs').CommandModule} */ ({
66
command: 'install',
@@ -12,6 +12,6 @@ module.exports = /** @type {import('yargs').CommandModule} */ ({
1212
});
1313
},
1414
async handler({ unattended }) {
15-
await install.install({ unattended });
15+
await installation.install({ unattended });
1616
},
1717
});

lib/commands/uninstall.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
'use strict';
22

3-
const install = require('../install/macos');
3+
const installation = require('../installation');
44

55
module.exports = /** @type {import('yargs').CommandModule} */ ({
66
command: 'uninstall',
77
describe: 'Uninstall text to speech extension and other support',
88
async handler() {
9-
await install.uninstall();
9+
await installation.uninstall();
1010

1111
console.log('Uninstallation completed successfully.');
1212
},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../modules/types.js" />
1+
/// <reference path="../modules/types.js" />
22
/// <reference path="./applescript.js" />
33

44
'use strict';

0 commit comments

Comments
 (0)