1
0
mirror of https://github.com/fumiama/RVC-Models-Downloader.git synced 2024-09-29 14:26:25 +09:00

fix: notui

This commit is contained in:
源文雨 2024-04-20 21:09:53 +09:00
parent f79b3a3a5e
commit 77dc207adf

10
main.go
View File

@ -6,6 +6,7 @@ import (
"fmt" "fmt"
"os" "os"
"runtime" "runtime"
"sync"
"time" "time"
"github.com/fumiama/terasu/dns" "github.com/fumiama/terasu/dns"
@ -57,7 +58,10 @@ func main() {
} }
ctx, cancel := context.WithCancel(context.Background()) ctx, cancel := context.WithCancel(context.Background())
defer cancel() defer cancel()
wg := sync.WaitGroup{}
wg.Add(1)
go func() { go func() {
defer wg.Done()
if *dnsf != "" { if *dnsf != "" {
f, err := os.Open(*dnsf) f, err := os.Open(*dnsf)
if err != nil { if err != nil {
@ -99,5 +103,9 @@ func main() {
logrus.Warnln("download canceled") logrus.Warnln("download canceled")
} }
}() }()
sc.show(time.Second) if notui {
wg.Wait()
} else {
sc.show(time.Second)
}
} }