On Thu, Jul 11, 2013 at 01:03:35PM -0400, Jonathan Frazier wrote:
> Signed-off-by: Jonathan Frazier <[email protected]>
> ---
>  contrib/pacdiff.sh.in | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/contrib/pacdiff.sh.in b/contrib/pacdiff.sh.in
> index 47779d6..1c24804 100644
> --- a/contrib/pacdiff.sh.in
> +++ b/contrib/pacdiff.sh.in
> @@ -47,9 +47,9 @@ version() {
>  
>  cmd() {
>       if [ $locate -eq 1 ]; then
> -             locate -0 -e -b \*.pacnew \*.pacorig \*.pacsave
> +             locate -0 -e -b \*.pacnew \*.pacorig \*.pacsave 
> '*.pacsave.[0-9]'
>       else
> -             find $diffsearchpath \( -name \*.pacnew -o -name \*.pacorig -o 
> -name \*.pacsave \) -print0
> +             find $diffsearchpath \( -name \*.pacnew -o -name \*.pacorig -o 
> -name \*.pacsave '*.pacsave.[0-9]' \) -print0

Please test your work. This is a syntax error.

>       fi
>  }
>  
> @@ -97,6 +97,8 @@ while IFS= read -u 3 -r -d '' pacfile; do
>       fi
>  done 3< <(cmd)
>  
> +(( ${#oldsaves[@]} > 0 )) && warning "Ignoring %s" "${oldsaves[@]}"
> +
>  exit 0
>  
>  # vim: set ts=2 sw=2 noet:
> -- 
> 1.8.3.2
> 
> 

Reply via email to