Update checkdeps

This commit is contained in:
clsty
2025-10-30 12:37:05 +08:00
parent f324310355
commit 5509e21759
+13 -5
View File
@@ -28,8 +28,16 @@ while true ; do
esac
done
if [[ -f "$1" ]]; then
echo "Using list file \"$1\".";LIST_FILE_PATH="$1";shift 2
else
echo "Wrong path of list file.";exit 1
fi
eval set -- "$para"
while true ; do
case "$1" in
--) break ;;
*)
if [[ -f "$1" ]]; then
echo "Using list file \"$1\".";LIST_FILE_PATH="$1";shift 1
else
echo "Wrong path of list file.";exit 1
fi
;;
esac
done