From 190ad20aaa9d4555299fc22f3df86d7a06716a83 Mon Sep 17 00:00:00 2001 From: clsty Date: Tue, 23 Jan 2024 12:42:38 +0800 Subject: [PATCH] Minor fix on checkdeps.sh. --- checkdeps.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/checkdeps.sh b/checkdeps.sh index 21dec885f..11123a8eb 100755 --- a/checkdeps.sh +++ b/checkdeps.sh @@ -1,5 +1,6 @@ #!/usr/bin/env bash -# Check whether deps exists in AUR or repos of Arch. +# Check whether pkgs exist in AUR or repos of Arch. +# This is a workaround for https://github.com/end-4/dots-hyprland/discussions/204 # Do NOT abuse this since it consumes extra bandwidth from AUR server. cd "$(dirname "$0")" @@ -15,3 +16,4 @@ echo "The non-existent pkgs in $pkglistfile_orig are listed as follows." # Borrowed from https://bbs.archlinux.org/viewtopic.php?pid=1490795#p1490795 comm -23 <(sort -u $pkglistfile) <(sort -u <(wget -q -O - https://aur.archlinux.org/packages.gz | gunzip) <(pacman -Ssq)) echo "End. If nothing appears, then all pkgs exist." +rm $pkglistfile