707589ec6a
All checks were successful
PikaOS Package Build & Release (amd64-v3) / build (push) Successful in 2m41s
10 lines
163 B
Bash
Executable File
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 |