We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 968576d commit fbb019cCopy full SHA for fbb019c
scripts/ci/codegen/pushGeneratedCode.ts
@@ -8,7 +8,7 @@ import text, { commitStartPrepareRelease } from './text.js';
8
9
async function isUpToDate(baseBranch: string): Promise<boolean> {
10
await run('git fetch origin');
11
- return (await run(`git pull origin ${baseBranch}`)).includes('Already up to date.');
+ return (await run(`git pull origin "${baseBranch}"`)).includes('Already up to date.');
12
}
13
14
/**
0 commit comments