We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52146c5 commit a01a15eCopy full SHA for a01a15e
1 file changed
cmd/internal/skills/generator.go
@@ -130,7 +130,8 @@ const configArgs = [{{.ConfigArgs}}];
130
131
function getToolboxPath() {
132
if (process.env.GEMINI_CLI === '1') {
133
- const localPath = path.resolve(__dirname, '../../../toolbox');
+ const ext = process.platform === 'win32' ? '.exe' : '';
134
+ const localPath = path.resolve(__dirname, '../../../toolbox' + ext);
135
if (fs.existsSync(localPath)) {
136
return localPath;
137
}
0 commit comments