Update checkdeps

This commit is contained in:
clsty
2025-10-30 12:52:16 +08:00
parent 86a10e9af5
commit bdc55dd082
+3 -3
View File
@@ -6,13 +6,13 @@
pkglistfile=$(mktemp)
pkglistfile_orig=${LIST_FILE_PATH}
pkglistfile_orig_s=${REPO_ROOT}/cache/dependencies_stripped.conf
if ! $(command -v curl);then
if ! "$(command -v curl)";then
echo "Please install curl first.";exit 1
fi
if ! $(command -v gzip);then
if ! "$(command -v gzip)";then
echo "Please install gzip first.";exit 1
fi
if ! $(command -v pacman);then
if ! "$(command -v pacman)";then
echo "pacman not found, aborting...";exit 1
fi
remove_bashcomments_emptylines $pkglistfile_orig $pkglistfile_orig_s