From c298870c95eb4054c73f14b11397b5301ec2dc59 Mon Sep 17 00:00:00 2001 From: Krystof Woldrich Date: Tue, 27 Aug 2024 10:59:14 +0200 Subject: [PATCH] fix lint --- bin/sentry-cli-dev | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/sentry-cli-dev b/bin/sentry-cli-dev index 12de864665..ea44cd54ed 100755 --- a/bin/sentry-cli-dev +++ b/bin/sentry-cli-dev @@ -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) => {