Skip to content

Commit 6709d89

Browse files
authored
Bugfix and add .dockerignore (#10)
* Fix bug in join-insv Use _temp_.mp4 as suffix for temp file. * Add .dockerignore Exclude datadir etc. from build context.
1 parent 0058fab commit 6709d89

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
datadir/
2+
LICENSE
3+
README.md

scripts/join-insv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ join_insv() {
5151
local outfile="$2"
5252
shift 2
5353

54-
local tmpfile="_tmp.${outfile}"
54+
local tmpfile="${outfile}"_tmp_.mp4
5555
local file_list
5656
file_list="_list.txt"
5757

0 commit comments

Comments
 (0)