fix for aggregate

This commit is contained in:
Costa Tsaousis (ktsaou) 2015-04-30 15:33:58 +03:00
parent b8ea87810e
commit fc38f2d8da

@ -88,14 +88,14 @@ aggregate_cmd() {
local cmd="`which aggregate-flim`"
if [ ! -z "${cmd}" ]
then
${cmd} -p 32
${cmd}
return $?
fi
cmd="`which aggregate`"
if [ ! -z "${cmd}" ]
then
${cmd}
${cmd} -p 32
return $?
fi