Skip to content

Commit c5435ea

Browse files
authored
attempt CI fix (#2133)
1 parent 1b44c2b commit c5435ea

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

packages/testtools/src/schema.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,16 @@ export function run(cmd: string, env?: Record<string, string>, cwd?: string) {
5252
});
5353
} catch (err) {
5454
console.error('Command failed:', cmd, err);
55+
try {
56+
execSync(cmd, {
57+
stdio: 'inherit',
58+
encoding: 'utf-8',
59+
env: { ...process.env, DO_NOT_TRACK: '1', ...env },
60+
cwd,
61+
});
62+
} catch {
63+
// noop
64+
}
5565
throw err;
5666
}
5767
}

0 commit comments

Comments
 (0)