fix(offload): switch to global gemini binary for remote execution

This commit is contained in:
mkorwel
2026-03-18 10:42:05 -07:00
parent 7f8bd31b08
commit 822f478d9b
3 changed files with 7 additions and 17 deletions
+3
View File
@@ -174,6 +174,9 @@ This script will:
// Wipe existing dir for a clean clone and use absolute paths
const cloneCmd = `rm -rf ${remoteWorkDir} && git clone --filter=blob:none ${repoUrl} ${remoteWorkDir} && cd ${remoteWorkDir} && git remote add upstream https://github.com/${upstreamRepo}.git && git fetch upstream`;
await provider.exec(cloneCmd);
console.log('📦 Installing remote dependencies (this may take a few minutes)...');
await provider.exec(`cd ${remoteWorkDir} && npm ci`);
}
// Save Settings