Skip to content

Commit 506ffb0

Browse files
Fix #17 and #20
1 parent e81b5af commit 506ffb0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

tasks.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,14 @@ func (tp *TaskProcessor) run(commandTemplate *template.Template) (err error) {
238238
}
239239
tp.ProcessedSize = stat.Size()
240240

241-
tp.ProcessedFilename = strings.TrimSuffix(tp.OriginalFilename, tp.OriginalExtension) + tp.ProcessedExtension
241+
tp.ProcessedFilename = TrimSuffixCaseInsensitive(tp.OriginalFilename, tp.OriginalExtension) + tp.ProcessedExtension
242242

243243
return
244244
}
245+
246+
func TrimSuffixCaseInsensitive(str, suffix string) string {
247+
if strings.HasSuffix(strings.ToLower(str), strings.ToLower(suffix)) {
248+
return str[:len(str)-len(suffix)]
249+
}
250+
return str
251+
}

0 commit comments

Comments
 (0)