Skip to content

Commit

Permalink
Update main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamerminsk authored Jan 17, 2024
1 parent 33177a0 commit c0ac18f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"os"
"strconv"
"strings"
"path/filepath"
)

func GetPlayer(text string) string {
Expand Down Expand Up @@ -74,7 +75,7 @@ func main() {
for _, file := range files {
if !file.IsDir() {
fmt.Println(file.Name())
ProcessFile(file.Name())
ProcessFile(filepath.Join(".", "raw", file.Name()))
}
}
}

0 comments on commit c0ac18f

Please sign in to comment.