Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/testtools/src/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ export function run(cmd: string, env?: Record<string, string>, cwd?: string) {
});
} catch (err) {
console.error('Command failed:', cmd, err);
execSync(cmd, {
stdio: 'inherit',
encoding: 'utf-8',
env: { ...process.env, DO_NOT_TRACK: '1', ...env },
cwd,
});
throw err;
}
}
Expand Down