mirror of
https://github.com/google-gemini/gemini-cli
synced 2026-04-21 13:37:17 +00:00
fix punycode2 (#20154)
This commit is contained in:
parent
d143a83d5b
commit
6676546a4b
3 changed files with 3 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env node
|
||||
#!/usr/bin/env -S node --no-warnings=DEP0040
|
||||
|
||||
/**
|
||||
* @license
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env node
|
||||
#!/usr/bin/env -S node --no-warnings=DEP0040
|
||||
|
||||
/**
|
||||
* @license
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ execSync('node ./scripts/check-build-status.js', {
|
|||
cwd: root,
|
||||
});
|
||||
|
||||
const nodeArgs = [];
|
||||
const nodeArgs = ['--no-warnings=DEP0040'];
|
||||
let sandboxCommand = undefined;
|
||||
try {
|
||||
sandboxCommand = execSync('node scripts/sandbox_command.js', {
|
||||
|
|
|
|||
Loading…
Reference in a new issue