On 30 December 2011 23:59, Sebastian Herbszt <herb...@gmx.de> wrote:
> Make python mandatory.

> +if has $python; then
> +  :
> +else
> +  echo "Python not found. Use --python=/path/to/python"
> +  exit 1
>  fi
>
>  if test -z "$target_list" ; then

I know you've just removed the outer condition here, but
while we're fiddling with it, wouldn't
   if ! has "$python"; then
       echo "Python not found etc"
   fi

be better?

-- PMM

Reply via email to