aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--network/receivepack/service/ingest_quarantine.go3
2 files changed, 2 insertions, 5 deletions
diff --git a/README.md b/README.md
index 09c5eb65..200aa2cb 100644
--- a/README.md
+++ b/README.md
@@ -47,10 +47,10 @@ version for this Program.
## Repos and mirrors
-* [Codeberg](https://codeberg.org/lindenii/furgit)
+* [git.runxiyu.org](https://git.runxiyu.org/furgit.git//)
+* [Codeberg mirror](https://codeberg.org/lindenii/furgit)
* [SourceHut mirror](https://git.sr.ht/~runxiyu/furgit)
* [hjgit mirror](https://hjgit.org/runxiyu/furgit/HEAD/info.html)
-* [git.runxiyu.org mirror](https://git.runxiyu.org/furgit.git//)
* [cgit.space mirror](https://cgit.space/~runxiyu/furgit.git/)
* [tangled mirror](https://tangled.org/@runxiyu.tngl.sh/furgit)
* [GitHub mirror](https://github.com/runxiyu/furgit)
diff --git a/network/receivepack/service/ingest_quarantine.go b/network/receivepack/service/ingest_quarantine.go
index dc0fef50..8be73e33 100644
--- a/network/receivepack/service/ingest_quarantine.go
+++ b/network/receivepack/service/ingest_quarantine.go
@@ -57,7 +57,6 @@ func (service *Service) ingestQuarantine(
}
utils.BestEffortFprintf(service.opts.Progress, "creating quarantine: done.\n")
- utils.BestEffortFprintf(service.opts.Progress, "unpacking...\r")
err = quarantine.WritePack(req.Pack, objectstore.PackWriteOptions{
ThinBase: service.opts.ExistingObjects,
@@ -75,7 +74,5 @@ func (service *Service) ingestQuarantine(
return nil, false
}
- utils.BestEffortFprintf(service.opts.Progress, "unpacking: done.\n")
-
return quarantine, true
}