Skip to content

Commit 5f0299b

Browse files
committed
fix(upload): Escape upload report URL
1 parent 4a1bdd2 commit 5f0299b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/fossa/upload/upload.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func Run(ctx *cli.Context) {
7575
============================================================
7676
7777
View FOSSA Report:
78-
` + baseURL.ResolveReference(reportURL).String() + `
78+
` + strings.Replace(baseURL.ResolveReference(reportURL).String(), "%", "%%", -1) + `
7979
8080
============================================================
8181
`)

0 commit comments

Comments
 (0)