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
Log blob count in incremental update if `--verbose`.
whitequark.org
3 months ago
90d6be2d
91c96b3f
+3
1 changed file
expand all
collapse all
unified
split
main.go
+3
main.go
···
404
404
needBlobs = append(needBlobs, scanner.Text())
405
405
}
406
406
response.Body.Close()
407
407
+
if *verboseFlag {
408
408
+
fmt.Fprintf(os.Stderr, "incremental: need %d blobs\n", len(needBlobs))
409
409
+
}
407
410
request.Body = streamArchiveFS(uploadDir.FS(), pathPrefix, needBlobs)
408
411
continue // resubmit
409
412
} else if response.StatusCode == http.StatusOK {