We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e81b5af commit 506ffb0Copy full SHA for 506ffb0
tasks.go
@@ -238,7 +238,14 @@ func (tp *TaskProcessor) run(commandTemplate *template.Template) (err error) {
238
}
239
tp.ProcessedSize = stat.Size()
240
241
- tp.ProcessedFilename = strings.TrimSuffix(tp.OriginalFilename, tp.OriginalExtension) + tp.ProcessedExtension
+ tp.ProcessedFilename = TrimSuffixCaseInsensitive(tp.OriginalFilename, tp.OriginalExtension) + tp.ProcessedExtension
242
243
return
244
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