Re: [pacman-dev] [PATCH 3/4] util/pkgbuild: fix broken indentation

2017-02-25 Thread Andrew Gregory
On 02/25/17 at 05:33pm, Kieran Colford wrote:
> Is this a whitespace only patch or am I missing something?

Yes, as the commit message says, all this does is fix the indentation.


Re: [pacman-dev] [PATCH 3/4] util/pkgbuild: fix broken indentation

2017-02-25 Thread Kieran Colford
Is this a whitespace only patch or am I missing something?

On Sat, Feb 25, 2017, 12:21 PM Andrew Gregory, 
wrote:

> ---
>  scripts/libmakepkg/util/pkgbuild.sh.in | 16 
>  1 file changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/scripts/libmakepkg/util/pkgbuild.sh.in
> b/scripts/libmakepkg/util/pkgbuild.sh.in
> index 7074c8c5..ae8ba5e7 100644
> --- a/scripts/libmakepkg/util/pkgbuild.sh.in
> +++ b/scripts/libmakepkg/util/pkgbuild.sh.in
> @@ -207,14 +207,14 @@ get_integlist() {
> continue
> fi
>
> -   # check for e.g. "sha256sums_x86_64"
> -   for a in "${arch[@]}"; do
> -   local sumname="${integ}sums_${a}[@]"
> -   if [[ -n ${!sumname} ]]; then
> -   integlist+=("$integ")
> -   break
> -   fi
> -   done
> +   # check for e.g. "sha256sums_x86_64"
> +   for a in "${arch[@]}"; do
> +   local sumname="${integ}sums_${a}[@]"
> +   if [[ -n ${!sumname} ]]; then
> +   integlist+=("$integ")
> +   break
> +   fi
> +   done
> done
>
> if (( ${#integlist[@]} > 0 )); then
> --
> 2.11.1
>
-- 

Signed, Kieran Colford