]> git.decadent.org.uk Git - dak.git/commitdiff
Don't be verbose in unchecked
authorMark Hymers <mhy@debian.org>
Mon, 2 Jan 2012 19:59:30 +0000 (19:59 +0000)
committerMark Hymers <mhy@debian.org>
Mon, 2 Jan 2012 19:59:30 +0000 (19:59 +0000)
Signed-off-by: Mark Hymers <mhy@debian.org>
config/debian/common

index 84640e2a6e7eddac3d33e825f40939e9f3bb04a0..3e8aefbfeaa2a4940396b72ccbc4326d4d70162c 100644 (file)
@@ -56,13 +56,17 @@ function punew_do() {
 
 # These versions used in dinstall
 function punew() {
-    log "Doing automated p-u-new processing"
+    if [ "${PROGRAM}" = "dinstall" ]; then
+        log "Doing automated p-u-new processing"
+    fi
     cd "${queuedir}/p-u-new"
     punew_do "$1"
 }
 
 function opunew() {
-    log "Doing automated o-p-u-new processing"
+    if [ "${PROGRAM}" = "dinstall" ]; then
+        log "Doing automated o-p-u-new processing"
+    fi
     cd "${queuedir}/o-p-u-new"
     punew_do "$1"
 }