04-create-xbps-metadata-scripts.sh: replace echo | grep with [[ ]]

This commit is contained in:
maxice8 2019-04-14 02:12:51 -03:00 committed by maxice8
parent a00d546dce
commit 13b5d09803

View file

@ -302,7 +302,7 @@ _EOF
for f in ${triggers}; do
targets=$($XBPS_TRIGGERSDIR/$f targets)
for j in ${targets}; do
if ! $(echo $j|grep -q pre-${action}); then
if ! [[ $j =~ pre-${action} ]]; then
continue
fi
printf "\t\${TRIGGERSDIR}/$f run $j \${PKGNAME} \${VERSION} \${UPDATE} \${CONF_FILE}\n" >> $tmpf
@ -314,7 +314,7 @@ _EOF
for f in ${triggers}; do
targets=$($XBPS_TRIGGERSDIR/$f targets)
for j in ${targets}; do
if ! $(echo $j|grep -q post-${action}); then
if ! [[ $j =~ post-${action} ]]; then
continue
fi
printf "\t\${TRIGGERSDIR}/$f run $j \${PKGNAME} \${VERSION} \${UPDATE} \${CONF_FILE}\n" >> $tmpf