From 667c53ce793a5af847c606ad987d5ea042a3b4b3 Mon Sep 17 00:00:00 2001 From: joey Date: Mon, 22 Nov 1999 22:11:21 +0000 Subject: [PATCH] * makesample.sh is now careful to make sure each program is executable before running it. Closes: #50985 * I also set -e the script. --- debian/changelog | 8 ++++++++ debian/control | 2 +- makesample.sh | 5 +++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index d6f1ad8..e2c5c81 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +filters (2.8) unstable; urgency=low + + * makesample.sh is now careful to make sure each program is executable + before running it. Closes: #50985 + * I also set -e the script. + + -- Joey Hess Mon, 22 Nov 1999 14:09:43 -0800 + filters (2.7) unstable; urgency=low * A much better synopsis. diff --git a/debian/control b/debian/control index 2781f14..5971ed5 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: filters Section: games Priority: optional Maintainer: Joey Hess -Standards-Version: 3.1.0.0 +Standards-Version: 3.1.1.0 Package: filters Architecture: any diff --git a/makesample.sh b/makesample.sh index 4fc1729..01f7d50 100644 --- a/makesample.sh +++ b/makesample.sh @@ -1,5 +1,6 @@ -#!/bin/sh +#!/bin/sh -e +chmod +x $1 echo $1 >>SAMPLES echo "-------------" >>SAMPLES echo -e "Here's how this filter sounds, in everyday use.\nThis line is another sample of this filter's output." | ./$1 >>SAMPLES -echo "" >>SAMPLES \ No newline at end of file +echo "" >>SAMPLES -- 2.30.2