Skip to content

Commit

Permalink
fix: correctly format the command args for datadog-ci (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamstankiewicz authored Jun 11, 2024
1 parent aef7176 commit 752a766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tubular/scripts/frontend_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 752a766

Please sign in to comment.