From d6ec7afd846d25ea2f903dcd9ff4194fae74a064 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Tue, 11 Jun 2024 14:36:20 -0400 Subject: [PATCH] fix: fix command args for datadog-ci --- tubular/scripts/frontend_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubular/scripts/frontend_utils.py b/tubular/scripts/frontend_utils.py index 1218994e..7b92df71 100755 --- a/tubular/scripts/frontend_utils.py +++ b/tubular/scripts/frontend_utils.py @@ -277,7 +277,7 @@ def _upload_js_sourcemaps(self, app_path): command_args = ' '.join([ f'--service="{service}"', - f'--release-version="{version}"' + f'--release-version="{version}"', '--minified-path-prefix="/"', # Sourcemaps are relative to the root when deployed ]) self.LOG('Uploading source maps to Datadog for app {}.'.format(self.app_name))