Skip to content

Commit

Permalink
feat(upload): switch url to dep report
Browse files Browse the repository at this point in the history
  • Loading branch information
xizhao committed Mar 15, 2018
1 parent 7a7961d commit abc1399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/fossa/upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ func doUpload(conf config.CLIConfig, results []normalizedModule) (string, error)
return "", fmt.Errorf("invalid response, but build was uploaded")
}
locParts := strings.Split(jsonResponse["locator"].(string), "$")
getRef, _ := url.Parse("/projects/" + url.QueryEscape(locParts[0]) + "/refs/branch/master/" + url.QueryEscape(locParts[1]))
getRef, _ := url.Parse("/projects/" + url.QueryEscape(locParts[0]) + "/refs/branch/master/" + url.QueryEscape(locParts[1]) + "/browse/dependencies")
return fmt.Sprint(`
============================================================
Expand Down

0 comments on commit abc1399

Please sign in to comment.