Re: [PATCH] completion: treat unset GIT_COMPLETION_SHOW_ALL gracefully

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Ville Skyttä <ville.skytta@xxxxxx> writes:

> If not set, referencing it in nounset (set -u) mode unguarded produces
> an error.
>
> Signed-off-by: Ville Skyttä <ville.skytta@xxxxxx>
> ---
>  contrib/completion/git-completion.bash | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Thanks.

$ git grep -h -o -e '\$GIT_[A-Z_]*' master -- contrib/completion/git-completion.bash

gives a few other hits.

$GIT_DIR
$GIT_COMPLETION_SHOW_ALL
$GIT_TESTING_ALL_COMMAND_LIST
$GIT_TESTING_ALL_COMMAND_LIST
$GIT_TESTING_PORCELAIN_COMMAND_LIST

Have you gone through all of these hits?

I just checked that the reference to $GIT_DIR is safe.

        elif [ -n "${GIT_DIR-}" ]; then
                test -d "${GIT_DIR-}" &&
                __git_repo_path="$GIT_DIR"

In fact, after checking "is this non-empty?", the form used to see
"is this a directory" does not even need to be "${VAR-}".

Among the two references to GIT_TESTING_ALL_COMMAND_LIST, the first
one does not look safe to me, and that is what made me take a look
myself.  It probably wants to follow the same pattern as above,
doesn't it?  Or am I reading the code incorrectly and the use there
is safe?

Reference to $GIT_TESTING_PORCELAIN_COMMAND_LIST is safe, as it
follows the same "if test -n "${VAR-}"; then use "$VAR"; fi"
pattern.

So, this patch definitely looks like an improvement, but if there
are so few remaining issues, I'd prefer to see that (1) the proposed
log message explain that the patch author audited all usages of
variables and updated all "-u"-unsafe ones, and (2) the patch
actually does update all remaining problematic ones.

If I am wrong about TESTING_ALL_COMMAND_LIST, then (2) may already
be true, but then we want to describe that fact in the log message
even more.  It would ensure that future developers understand that
${VAR-} constructs are no accident and we are striving to make the
script "-u"-safe.

Thanks.

> diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
> index e1a66954fe..6d77f56f92 100644
> --- a/contrib/completion/git-completion.bash
> +++ b/contrib/completion/git-completion.bash
> @@ -427,7 +427,7 @@ __gitcomp_builtin ()
>  
>  	if [ -z "$options" ]; then
>  		local completion_helper
> -		if [ "$GIT_COMPLETION_SHOW_ALL" = "1" ]; then
> +		if [ "${GIT_COMPLETION_SHOW_ALL-}" = "1" ]; then
>  			completion_helper="--git-completion-helper-all"
>  		else
>  			completion_helper="--git-completion-helper"




[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux