Merge pull request #420 from odinuge/remote-url-err

Fix wrong repo url being used for pushing
This commit is contained in:
Nate Smith 2020-02-13 13:07:36 -06:00 committed by GitHub
commit be639e80b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -91,7 +91,7 @@ func AddRemote(name, initURL, finalURL string) (*Remote, error) {
}
}
finalURLParsed, err := url.Parse(initURL)
finalURLParsed, err := url.Parse(finalURL)
if err != nil {
return nil, err
}