Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/ci.js
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2020-07-08 01:49:55 +0300
committerisaacs <i@izs.me>2020-07-08 03:22:41 +0300
commite798ef6947bf0e4c6e1e7e6bb3895bb918c0c469 (patch)
tree91fe48fa6cde03496920e61e7396d48188da3630 /lib/ci.js
parente23c4af1cc4149d0567f8b15bbeba594685288c9 (diff)
fix completion call signature in several commands
Diffstat (limited to 'lib/ci.js')
-rw-r--r--lib/ci.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ci.js b/lib/ci.js
index 8823139df..916cd8299 100644
--- a/lib/ci.js
+++ b/lib/ci.js
@@ -10,7 +10,7 @@ const usageUtil = require('./utils/usage.js')
const usage = usageUtil('ci', 'npm ci')
-const completion = (cb) => cb(null, [])
+const completion = (opts, cb) => cb(null, [])
const cmd = (args, cb) => ci().then(() => cb()).catch(cb)