Delete aur_updates

This commit is contained in:
Vlad Doster 2020-05-09 19:13:09 -05:00 committed by GitHub
parent 1ce8b9c5ce
commit 7a1ad90c42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +0,0 @@
#!/usr/bin/env sh
if ! updates=$(yay -Qum 2> /dev/null | wc -l); then
updates=0
fi
if [ "$updates" -eq 1 ]; then
echo "$updates update"
elif [ "$updates" -gt 1 ]; then
echo "$updates updates"
else
echo ""
fi