mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-01 15:34:29 -07:00
Skip binary CLI relaunch (#26261)
This commit is contained in:
@@ -99,6 +99,11 @@ function removeSignature(filePath) {
|
||||
* @param {string} filePath
|
||||
*/
|
||||
function signFile(filePath) {
|
||||
if (process.env.SKIP_SIGNING === 'true') {
|
||||
console.log(`Skipping signing for ${filePath} (SKIP_SIGNING=true)`);
|
||||
return;
|
||||
}
|
||||
|
||||
const platform = process.platform;
|
||||
|
||||
if (platform === 'darwin') {
|
||||
|
||||
Reference in New Issue
Block a user