Skip to content

Commit 2b94f41

Browse files
author
Lukas Holzer
authoredJan 18, 2022
fix: fixes an issue where the autocomplete could not be written (#4076)
1 parent 14ce2eb commit 2b94f41

File tree

1 file changed

+26
-18
lines changed

1 file changed

+26
-18
lines changed
 

‎src/lib/completion/generate-autocompletion.js

+26-18
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const { existsSync, mkdirSync, writeFileSync } = require('fs')
33
const { dirname } = require('path')
44

5-
const { sortOptions } = require('../../utils')
5+
const { sortOptions, warn } = require('../../utils')
66

77
const { AUTOCOMPLETION_FILE } = require('./constants')
88

@@ -12,25 +12,33 @@ const { AUTOCOMPLETION_FILE } = require('./constants')
1212
* @returns {void}
1313
*/
1414
const createAutocompletion = (program) => {
15-
const autocomplete = program.commands.reduce(
16-
(prev, cmd) => ({
17-
...prev,
18-
[cmd.name()]: {
19-
name: cmd.name(),
20-
description: cmd.description().split('\n')[0],
21-
options: cmd.options
22-
.filter((option) => !option.hidden)
23-
.sort(sortOptions)
24-
.map((opt) => ({ name: `--${opt.name()}`, description: opt.description })),
25-
},
26-
}),
27-
{},
28-
)
15+
try {
16+
const autocomplete = program.commands.reduce(
17+
(prev, cmd) => ({
18+
...prev,
19+
[cmd.name()]: {
20+
name: cmd.name(),
21+
description: cmd.description().split('\n')[0],
22+
options: cmd.options
23+
.filter((option) => !option.hidden)
24+
.sort(sortOptions)
25+
.map((opt) => ({ name: `--${opt.name()}`, description: opt.description })),
26+
},
27+
}),
28+
{},
29+
)
2930

30-
if (!existsSync(dirname(AUTOCOMPLETION_FILE))) {
31-
mkdirSync(dirname(AUTOCOMPLETION_FILE), { recursive: true })
31+
if (!existsSync(dirname(AUTOCOMPLETION_FILE))) {
32+
mkdirSync(dirname(AUTOCOMPLETION_FILE), { recursive: true })
33+
}
34+
writeFileSync(AUTOCOMPLETION_FILE, JSON.stringify(autocomplete), 'utf-8')
35+
} catch (error_) {
36+
// Sometimes it can happen that the autocomplete generation in the postinstall script lacks permissions
37+
// to write files to the home directory of the user. Therefore just warn with the error and don't break install.
38+
if (error_ instanceof Error) {
39+
warn(`could not create autocompletion.\n${error_.message}`)
40+
}
3241
}
33-
writeFileSync(AUTOCOMPLETION_FILE, JSON.stringify(autocomplete), 'utf-8')
3442
}
3543

3644
module.exports = { createAutocompletion }

1 commit comments

Comments
 (1)

github-actions[bot] commented on Jan 18, 2022

@github-actions[bot]

📊 Benchmark results

Package size: 355 MB

Please sign in to comment.