mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
fix: missing file closding when printing downloading percent of gf cli file for command gf up
(#3483)
This commit is contained in:
parent
bbcf49db98
commit
ebe567dab2
@ -69,16 +69,18 @@ func doPrintDownloadPercent(doneCh chan int64, localSaveFilePath string, total i
|
||||
stop = false
|
||||
lastPercentFmt string
|
||||
)
|
||||
file, err := os.Open(localSaveFilePath)
|
||||
if err != nil {
|
||||
mlog.Fatal(err)
|
||||
}
|
||||
defer file.Close()
|
||||
|
||||
for {
|
||||
select {
|
||||
case <-doneCh:
|
||||
stop = true
|
||||
|
||||
default:
|
||||
file, err := os.Open(localSaveFilePath)
|
||||
if err != nil {
|
||||
mlog.Fatal(err)
|
||||
}
|
||||
fi, err := file.Stat()
|
||||
if err != nil {
|
||||
mlog.Fatal(err)
|
||||
|
Loading…
x
Reference in New Issue
Block a user