add missing IS_PACKAGE_CHECK function

This commit is contained in:
Florent 2023-01-04 18:28:30 +01:00 committed by GitHub
parent 395498824f
commit b21938c279
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,14 @@ pkg_dependencies=""
#=================================================
# PERSONAL HELPERS
#=================================================
IS_PACKAGE_CHECK () {
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]
then
return 0
else
return 1
fi
}
#=================================================
# EXPERIMENTAL HELPERS
#=================================================