aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/grofftest.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/grofftest.sh b/test/grofftest.sh
index 2c559d21a..ca1aa71d9 100644
--- a/test/grofftest.sh
+++ b/test/grofftest.sh
@@ -13,9 +13,9 @@ DIR=$2
$PANDOC --version > /dev/null || { echo "pandoc executable error" >&2 ; exit 1 ; }
-ls $2 | egrep "^.+\.[0-9]$" | while read f ; do
+ls $2 | egrep "^.+\.[0-9].?$" | while read f ; do
FILE="$DIR/$f"
- $PANDOC -f man -t native < $FILE > /dev/null
+ $PANDOC -f man -t native < $FILE 2>&1 > /dev/null
if [ $? -ne 0 ]; then
echo "Failed to convert $FILE"
fi