From bc834407447a2758242662a55fe55e011d137149 Mon Sep 17 00:00:00 2001 From: Clifford Yapp <238416+starseeker@users.noreply.github.com> Date: Mon, 18 Dec 2023 19:54:49 -0500 Subject: [PATCH] binunif objects aren't candidates for facetize - filter them out. --- sh/conversion.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sh/conversion.sh b/sh/conversion.sh index 17ee1b4d75b..a401b062127 100755 --- a/sh/conversion.sh +++ b/sh/conversion.sh @@ -641,7 +641,7 @@ while test $# -gt 0 ; do # execute in a coprocess if test "x$OBJECTS" = "x" ; then OBJECTS='-print' ; fi - cmd="$SGED -c \"$work\" search ! \( -type comb -and \( -nnodes 0 -or -above \( -type comb -and -nnodes 0 \) \) \) $OPATH $OBJECTS" + cmd="$SGED -c \"$work\" search \( ! \( -type comb -and \( -nnodes 0 -or -above \( -type comb -and -nnodes 0 \) \) \) -and \( ! \( ! -type shape ! -type comb \) \) \) $OPATH $OBJECTS" objects=`eval "$cmd" 2>&1 | grep -v Using` $VERBOSE_ECHO "\$ $cmd" $VERBOSE_ECHO "$objects"