tangled
alpha
login
or
join now
whitequark.org
/
git-pages-cli
1
fork
atom
[mirror] Command-line application for uploading a site to a git-pages server
1
fork
atom
overview
issues
pulls
pipelines
Fix `--debug-manifest` for site URLs not ending in a slash.
miyuko
1 week ago
7674f98b
a2350378
+1
-1
1 changed file
expand all
collapse all
unified
split
main.go
+1
-1
main.go
···
330
330
}
331
331
332
332
case *debugManifestFlag:
333
333
-
manifestURL := siteURL.ResolveReference(&url.URL{Path: ".git-pages/manifest.json"})
333
333
+
manifestURL := siteURL.JoinPath(".git-pages/manifest.json")
334
334
request, err = http.NewRequest("GET", manifestURL.String(), nil)
335
335
if err != nil {
336
336
fmt.Fprintf(os.Stderr, "error: %s\n", err)