cmd/cpe: fix dropped error (#1563)

This commit is contained in:
Lars Lehtonen
2021-08-06 12:51:30 -03:00
committed by GitHub
parent 9db49a1128
commit d53a43ad68
+1
View File
@@ -61,6 +61,7 @@ func main() {
panicif(err)
db, err := os.Open(dbPath)
panicif(err)
w := gzip.NewWriter(compressedDB)
_, err = io.Copy(w, db)