#!/usr/bin/env bash PKG_NAME="$1" if [ -z "$PKG_NAME" ]; then echo "Usage: nomarchy-pkg-missing " exit 1 fi nomarchy-pkg-present "$PKG_NAME" if [ $? -eq 0 ]; then exit 1 else exit 0 fi