From 9e5fcc649e30a8d2d0188bb1ff6901e72e121f77 Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Mon, 29 Jul 2024 08:18:56 +0000 Subject: [PATCH] feat: Modification completion aws --- completion.d/aws | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/completion.d/aws b/completion.d/aws index 9b5591c..6fd4c32 100644 --- a/completion.d/aws +++ b/completion.d/aws @@ -1,6 +1,5 @@ #!/bin/bash -if ( which aws && which aws_completer ) &> /dev/null -then +if (command -v aws && command -v aws_completer) &>/dev/null; then complete -C aws_completer aws fi