Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
krystofwoldrich committed Aug 27, 2024
1 parent 7f34028 commit c298870
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bin/sentry-cli-dev
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
#!/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), {
.spawn(path.join(__dirname, '../target/debug/sentry-cli'), process.argv.slice(2), {
stdio: 'inherit',
})
.on('error', (err) => {
Expand Down

0 comments on commit c298870

Please sign in to comment.