Skip to content

Commit a546d55

Browse files
committed
specify cwd in pnpm upgrade
1 parent b7ffcea commit a546d55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/isolated-demo-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const processDemo = async (demoName: string): Promise<DemoResult> => {
7676

7777
// Run pnpm upgrade on local packages
7878
try {
79-
execSync('pnpm upgrade "@powersync/*"');
79+
execSync('pnpm upgrade "@powersync/*"', { cwd: demoDest, stdio: 'inherit' });
8080
} catch (ex) {
8181
console.error(ex);
8282
result.installResult.state = TestState.FAILED;

0 commit comments

Comments
 (0)