From b9d7d036edbf5e2344c977905c331432c04920c9 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Wed, 12 Jun 2024 12:19:17 -0400 Subject: [PATCH] chore: remove cwd from datadog-ci sourcemaps upload --- tubular/scripts/frontend_utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tubular/scripts/frontend_utils.py b/tubular/scripts/frontend_utils.py index cdb19a83..711fc93d 100755 --- a/tubular/scripts/frontend_utils.py +++ b/tubular/scripts/frontend_utils.py @@ -233,7 +233,6 @@ def _install_requirements_npm_deploy(self): install_list = ' '.join(npm_deploy) install_private_proc = subprocess.Popen( [f'npm install {install_list} --no-save'], - cwd=self.app_name, shell=True ) install_private_proc_return_code = install_private_proc.wait() @@ -300,7 +299,6 @@ def _upload_js_sourcemaps(self, app_dist): app_dist, command_args, ]), - cwd=self.app_name, shell=True, ) return_code = proc.wait()