diff --git a/setup/os-dependencies/arch.zsh b/setup/os-dependencies/arch.zsh index 766a300..c3ec952 100644 --- a/setup/os-dependencies/arch.zsh +++ b/setup/os-dependencies/arch.zsh @@ -2,7 +2,9 @@ YAY__SOURCE_TARGET='https://aur.archlinux.org/yay.git' YAY__LOCAL_PATH="$HOME/.packages/yay" YAY__INSTALL_FROM_SOURCE() { - [ -d $YAY__LOCAL_PATH ] && return 0 + CHECK 'verifying yay install' + [ -d $YAY__LOCAL_PATH ] \ + && { OK; return 0; } || WARN CHECK 'downloading yay' git clone $ARCH__YAY_TARGET $YAY__LOCAL_PATH >>$LOG 2>&1\