Skip to content

Commit

Permalink
build: Fix how S3 URL is constructed
Browse files Browse the repository at this point in the history
  • Loading branch information
mikolajb committed Oct 7, 2024
1 parent b24006b commit a606a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ git_operator_version := env("GIT_OPERATOR_VERSION", "latest")

s3_path := "dkp" / git_tag
s3_bucket := "downloads.mesosphere.io"
s3_uri := "s3://" / s3_bucket / s3_path
s3_uri := "s3://" + s3_bucket / s3_path
s3_acl := "bucket-owner-full-control"
archive_name := "kommander-applications-" + git_tag+ ".tar.gz"
published_url := "https://downloads.d2iq.com" / s3_path / archive_name
Expand Down

0 comments on commit a606a1a

Please sign in to comment.