pika-welcome/data/scripts/check-pkg.sh
Ward from fusion-voyager-3 7f4683c653
All checks were successful
PikaOS Package Build & Release (amd64-v3) / build (push) Successful in 1m46s
Use dpkg status check
2024-09-02 03:38:40 +03:00

10 lines
163 B
Bash
Executable File

#! /usr/bin/bash
export LANG=C
package=$1
if dpkg-query -W -f='${Status}' $package 2>/dev/null | grep -q "install ok installed"
then
exit 0
else
exit 1
fi