Files
klz-cables.com/.pnpm-store/v10/files/c4/cca725605a76a9d217728f80dec312b158aba7ccb7b7f4256219c5782d97a44e7f0a7feb15d6bdf610d4406d33c0b8ca54892efcb32b8e14fda11a8a594e96-exec
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

20 lines
512 B
JavaScript
Executable File

#!/usr/bin/env node
'use strict';
const childProcess = require('child_process');
const path = require('path');
const child = childProcess
.spawn(path.join(__dirname, '../target/debug/sentry-cli'), process.argv.slice(2), {
stdio: 'inherit',
})
.on('error', (err) => {
console.error(err); // eslint-disable-line no-console
process.exit(1);
})
.on('exit', (code) => process.exit(code));
process.on('SIGTERM', () => child.kill('SIGTERM'));
process.on('SIGINT', () => child.kill('SIGINT'));