Skip to content

Commit

Permalink
Merge pull request #441 from paketo-buildpacks/google-s
Browse files Browse the repository at this point in the history
Change the way Java stackdriver version is being represented
  • Loading branch information
Daniel Mikusa authored Nov 2, 2021
2 parents cf311ed + c0e95c6 commit 641a3f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/google-stackdriver-profiler-dependency/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func main() {
}

if p := cp.FindStringSubmatch(o.Name); p != nil {
versions[fmt.Sprintf("%s.%s", p[1], p[2])] = fmt.Sprintf("https://storage.googleapis.com/%s/%s", o.Bucket, o.Name)
versions[fmt.Sprintf("%s.%s.%s%s", p[1][0:4], p[1][4:6], p[1][6:8], p[2])] = fmt.Sprintf("https://storage.googleapis.com/%s/%s", o.Bucket, o.Name)
}
}

Expand Down

0 comments on commit 641a3f8

Please sign in to comment.