We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96d7326 commit 3e71f15Copy full SHA for 3e71f15
cmd/root.go
@@ -120,6 +120,10 @@ var rootCmd = &cobra.Command{
120
updateProcessedFile(tempFileName, processedFileName)
121
122
if killed && !skipped {
123
+ if !terminated {
124
+ updateProcessedFile(fileName, processedFileName)
125
+ }
126
+
127
// Assume corrupted output file
128
err := os.Remove(tempFileName)
129
@@ -167,6 +171,8 @@ var rootCmd = &cobra.Command{
167
171
// Transcoded file is bigger than original
168
172
169
173
174
175
170
176
if err != nil && !os.IsNotExist(err) {
177
log.Errorf("Error deleting file %s: %s", tempFileName, err)
178
continue
0 commit comments