tristan-wip #2

Merged
TristanBrault merged 34 commits from tristan-wip into main 2025-07-19 19:58:58 +00:00
Showing only changes of commit 22e2cc088c - Show all commits

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 {