From 7207c2f98b107e6699ffa795fbd100d43ff5355c Mon Sep 17 00:00:00 2001 From: Chris Greenshields Date: Sun, 1 Oct 2017 12:10:25 +0100 Subject: [PATCH] foamCreateVideo: corrected test for avconv installation --- bin/foamCreateVideo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/foamCreateVideo b/bin/foamCreateVideo index a663a6f76..70c861639 100755 --- a/bin/foamCreateVideo +++ b/bin/foamCreateVideo @@ -128,7 +128,7 @@ if [ "$fmt" = "webm" ] ; then error "Please install avconv" fi else - if ! command -v avconv >/dev/null 2>&1 ; then + if command -v avconv >/dev/null 2>&1 ; then echo "Creating image with avconv..." avconv \ -framerate "$fps" \