[Tux4kids-commits] r146 - tuxmath/people/holger tuxtype/people/holger

Holger Levsen h01ger-guest at alioth.debian.org
Tue Apr 3 15:53:11 UTC 2007


Author: h01ger-guest
Date: 2007-04-03 15:53:11 +0000 (Tue, 03 Apr 2007)
New Revision: 146

Modified:
   tuxmath/people/holger/make_debian_packages
   tuxtype/people/holger/make_debian_packages
Log:
- demand bash
- be more quiet


Modified: tuxmath/people/holger/make_debian_packages
===================================================================
--- tuxmath/people/holger/make_debian_packages	2007-04-03 15:43:33 UTC (rev 145)
+++ tuxmath/people/holger/make_debian_packages	2007-04-03 15:53:11 UTC (rev 146)
@@ -1,19 +1,19 @@
-#!/bin/sh
+#!/bin/bash
 
 # copyright 2006-2007 Holger Levsen
 # released under the GPL version2
 #
 # attack of the ugly scripts! i think i want to learn about svn-buildpackage next...
 
-which fakeroot || {
+which fakeroot > /dev/null || {
 	echo error: please install the fakeroot package
 	exit 1
 }
-which dpkg-source || {
+which dpkg-source > /dev/null || {
 	echo error: please install the dpkg-dev package
 	exit 1
 }
-which debdiff || {
+which debdiff > /dev/null || {
 	echo error: please install the devscripts package
 	exit 1
 }

Modified: tuxtype/people/holger/make_debian_packages
===================================================================
--- tuxtype/people/holger/make_debian_packages	2007-04-03 15:43:33 UTC (rev 145)
+++ tuxtype/people/holger/make_debian_packages	2007-04-03 15:53:11 UTC (rev 146)
@@ -1,19 +1,19 @@
-#!/bin/sh
+#!/bin/bash
 
-# copyright 2006 Holger Levsen
+# copyright 2006-2007 Holger Levsen
 # released under the GPL version2
 #
 # attack of the ugly scripts! i think i want to learn about svn-buildpackage next...
 
-which fakeroot || {
+which fakeroot > /dev/null || {
 	echo error: please install the fakeroot package
 	exit 1
 }
-which dpkg-source || {
+which dpkg-source > /dev/null || {
 	echo error: please install the dpkg-dev package
 	exit 1
 }
-which debdiff || {
+which debdiff > /dev/null || {
 	echo error: please install the devscripts package
 	exit 1
 }




More information about the Tux4kids-commits mailing list