mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 14:10:37 -07:00
fix punycode2 (#20154)
This commit is contained in:
@@ -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', {
|
||||
|
||||
Reference in New Issue
Block a user