Skip to content

Commit 79b36dd

Browse files
committed
attempt CI fix
1 parent 1b44c2b commit 79b36dd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/testtools/src/schema.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@ export function run(cmd: string, env?: Record<string, string>, cwd?: string) {
5252
});
5353
} catch (err) {
5454
console.error('Command failed:', cmd, err);
55+
execSync(cmd, {
56+
stdio: 'inherit',
57+
encoding: 'utf-8',
58+
env: { ...process.env, DO_NOT_TRACK: '1', ...env },
59+
cwd,
60+
});
5561
throw err;
5662
}
5763
}

0 commit comments

Comments
 (0)