dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 27915a21f53015f590672dfdb095002df3009b2a
parent 187c62c6cc8aa4bb7c83ed237523012e9dc7e5eb
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon, 13 Apr 2020 15:10:16 +0200

Fix removal of temporary output

Diffstat:
M.local/bin/ffmpeg-combine | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.local/bin/ffmpeg-combine b/.local/bin/ffmpeg-combine @@ -16,5 +16,5 @@ if [ $? -ne 0 ]; then exit 1 fi -ffmpeg -f concat -safe 0 -i "$filelist" -c copy "$out" && rm -f "$out" +ffmpeg -f concat -safe 0 -i "$filelist" -c copy "$out" && rm -f "$filelist" printf '%s\n' "$out"