Skip to content

Commit

Permalink
Fix provider build text replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamSendible committed Aug 19, 2024
1 parent 27842f3 commit 0c9eb2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/provider/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func main() {
if buildVersion == "dev" {
replaced = strings.Replace(replaced, "##PROJECT_ROOT##", projectRoot, -1)
} else {
replaced = strings.Replace(string(content), "##ASSET_REPOSITORY##", assetRepository, -1)
replaced = strings.Replace(replaced, "##ASSET_REPOSITORY##", assetRepository, -1)
}

for k, v := range checksumMap {
Expand Down

0 comments on commit 0c9eb2d

Please sign in to comment.