stupid mistake

This commit is contained in:
Trit0 2025-06-29 18:23:25 -04:00
parent 9180a94c56
commit 22e2cc088c

View File

@ -147,7 +147,7 @@ func extractZipsInFolder(folder string) error {
if entry.IsDir() {
continue
}
if strings.HasSuffix(strings.ToLower(entry.Name()), ".conj") {
if strings.HasSuffix(strings.ToLower(entry.Name()), ".zip") {
zipPath := filepath.Join(folder, entry.Name())
fmt.Println("Extracting:", zipPath)
if err := extractZipToSiblingFolder(zipPath); err != nil {