From 13b5d0980342fed3030221e6d540fa352401d814 Mon Sep 17 00:00:00 2001 From: maxice8 Date: Sun, 14 Apr 2019 02:12:51 -0300 Subject: [PATCH] 04-create-xbps-metadata-scripts.sh: replace echo | grep with [[ ]] --- common/hooks/post-install/04-create-xbps-metadata-scripts.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/hooks/post-install/04-create-xbps-metadata-scripts.sh b/common/hooks/post-install/04-create-xbps-metadata-scripts.sh index cc68069d615..13d555bde21 100644 --- a/common/hooks/post-install/04-create-xbps-metadata-scripts.sh +++ b/common/hooks/post-install/04-create-xbps-metadata-scripts.sh @@ -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