mirror of
https://git.freebsd.org/ports.git
synced 2025-07-14 07:49:16 -04:00
packaging for the case, when the install of documentation is enabled. Transfer maintainership to antoine@, so he can continue to do as he pleases with both, but without the guilt of changing other people's ports.
28 lines
781 B
Text
28 lines
781 B
Text
--- test/scripts/test_seq.sh 2014-06-23 15:17:21.000000000 -0400
|
|
+++ test/scripts/test_seq.sh 2014-07-01 12:38:53.000000000 -0400
|
|
@@ -1,3 +1,3 @@
|
|
-#!/bin/bash
|
|
+#!/bin/sh
|
|
|
|
# set -x
|
|
@@ -18,5 +18,5 @@
|
|
rm -f $tmp/x.png
|
|
vipsthumbnail $huge -o $tmp/x.png
|
|
-if ! vipsheader $tmp/x.png &> /dev/null ; then
|
|
+if ! vipsheader $tmp/x.png ; then
|
|
echo "vipsthumbnail failed in basic mode"
|
|
exit 1
|
|
@@ -33,5 +33,5 @@
|
|
rm -f $tmp/x.png
|
|
vipsthumbnail $huge -o $tmp/x.png
|
|
-if ! vipsheader $tmp/x.png &> /dev/null ; then
|
|
+if ! vipsheader $tmp/x.png ; then
|
|
echo "vipsthumbnail made a temp"
|
|
exit 1
|
|
@@ -42,5 +42,5 @@
|
|
rm -f $tmp/x.png
|
|
vips shrink $huge $tmp/x.png 230 230
|
|
-if ! vipsheader $tmp/x.png &> /dev/null; then
|
|
+if ! vipsheader $tmp/x.png ; then
|
|
echo "shrink made a temp"
|
|
exit 1
|