remove validate.sh
This commit is contained in:
parent
021ffdf380
commit
02f3e1b7d5
1 changed files with 0 additions and 20 deletions
20
validate.sh
20
validate.sh
|
@ -1,20 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
info() {
|
|
||||||
printf "%b\n" "${1}"
|
|
||||||
}
|
|
||||||
|
|
||||||
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
|
|
||||||
skip_regex="^(#.*)?$"
|
|
||||||
|
|
||||||
total=$(grep -cvP "$skip_regex" "${SCRIPT_DIR}/packages.txt")
|
|
||||||
tput sc
|
|
||||||
while read -r package; do
|
|
||||||
echo "$package" | grep -qvP "$skip_regex" || continue
|
|
||||||
n=$((n + 1))
|
|
||||||
eval "info \"(${n}/${total}) Validating $package\""
|
|
||||||
xbps-query -R "$package" >/dev/null 2>&1 || failed_packages="${failed_packages} ${package}"
|
|
||||||
tput rc
|
|
||||||
tput el
|
|
||||||
done <"${SCRIPT_DIR}/packages.txt"
|
|
||||||
|
|
||||||
echo "Failed packages:${failed_packages}"
|
|
Reference in a new issue