We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e03793 commit 8e7e445Copy full SHA for 8e7e445
bin/cli.ts
@@ -14,6 +14,10 @@ async function main() {
14
process.argv.push('--');
15
}
16
17
+ if (process.env.TAB_DEBUG) {
18
+ console.error("RAW ARGS:", process.argv);
19
+ }
20
+
21
// <packageManager> complete -- <args>
22
if (args.length >= 2 && args[1] === 'complete') {
23
const packageManager = args[0];
@@ -68,6 +72,8 @@ async function main() {
68
72
69
73
function generateCompletionScript(packageManager: string, shell: string) {
70
74
const name = packageManager;
75
+ console.log(process.argv);
76
71
77
78
const isLocalDev = process.argv[1].endsWith('dist/bin/cli.js');
79
0 commit comments