* With EXTRAVERBOSE==2 or more, make run_command() print out each
authorEinvalSledge@gmail.com <EinvalSledge@gmail.com@a0fa61bc-5347-0410-a1a9-7f54aa4e1825>
Thu, 19 Apr 2012 21:00:27 +0000 (21:00 +0000)
committerEinvalSledge@gmail.com <EinvalSledge@gmail.com@a0fa61bc-5347-0410-a1a9-7f54aa4e1825>
Thu, 19 Apr 2012 21:00:27 +0000 (21:00 +0000)
    command as it's run. (Closes issue 39).

git-svn-id: http://abcde.googlecode.com/svn/trunk@320 a0fa61bc-5347-0410-a1a9-7f54aa4e1825

abcde
changelog

diff --git a/abcde b/abcde
index 3d69a30..34e0546 100755 (executable)
--- a/abcde
+++ b/abcde
@@ -246,6 +246,7 @@ page ()
 # Runs a command, silently if necessary, and updates the status file
 run_command ()
 {
+       vvecho "$@"
        BLURB="$1"
        shift
        # See if this is supposed to be silent
index 69a06b4..db13477 100644 (file)
--- a/changelog
+++ b/changelog
@@ -23,6 +23,8 @@ abcde 2.5.1 UNRELEASED
   * Change the meaning of EXTRAVERBOSE; previously, it was a y/n option
     to make things more verbose. Add extra levels of verbosity (0, 1, 2 so
     far) and a new vvecho() function for callers to use.
+  * With EXTRAVERBOSE==2 or more, make run_command() print out each
+    command as it's run. (Closes issue 39).
 
   [ Colin Tuckley ]
   * replace deprecated egrep with grep -E (Closes issue 24).