diff --git a/main.go b/main.go index fbe38d2..accfd37 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( "slices" ) -const VERSION = "v5" +const VERSION = "v4" const MAXLINE = 1048576 type Db struct { @@ -68,11 +68,11 @@ func main() { dbName := dbMatch[1] db = NewDb(dbName) if (flagIncludeAll && slices.Contains(flagExcept, dbName)) || (flagExcludeAll && !slices.Contains(flagExcept, dbName)) { - fmt.Printf("Skipping %s\n", dbName) + fmt.Printf("Skipping %s\n", dbName) continue } - fmt.Printf("Extracting %s\n", db.Name) + fmt.Printf("Database %s\n", db.Name) if flagList { continue }