* makesample.sh is now careful to make sure each program is executable
authorjoey <joey@a4a2c43b-8ac3-0310-8836-e0e880c912e2>
Mon, 22 Nov 1999 22:11:21 +0000 (22:11 +0000)
committerjoey <joey@a4a2c43b-8ac3-0310-8836-e0e880c912e2>
Mon, 22 Nov 1999 22:11:21 +0000 (22:11 +0000)
     before running it. Closes: #50985
   * I also set -e the script.

debian/changelog
debian/control
makesample.sh

index d6f1ad86e7240d051ef925c43901780a321624d2..e2c5c81226308a3d4614df5dcba5abe245888d0a 100644 (file)
@@ -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 <joeyh@master.debian.org>  Mon, 22 Nov 1999 14:09:43 -0800
+
 filters (2.7) unstable; urgency=low
 
   * A much better synopsis.
index 2781f14216a2c96153302b0edf7cf2162c074d6b..5971ed5205202cde93d343a3f35422ee48f3835a 100644 (file)
@@ -2,7 +2,7 @@ Source: filters
 Section: games
 Priority: optional
 Maintainer: Joey Hess <joeyh@master.debian.org>
-Standards-Version: 3.1.0.0
+Standards-Version: 3.1.1.0
 
 Package: filters
 Architecture: any
index 4fc172989200f24ab5421d580ee6067da5f07c07..01f7d50eb39babd92766ad02beb48dd06fc03fb6 100644 (file)
@@ -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
This page took 0.011471 seconds and 4 git commands to generate.