diff --git a/debian/changelog b/debian/changelog
index 5ad371659814ea18b3f2c3b172d0169ced167994..88c4fc720cec5b0eba4481c636b70b4d332fdd29 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-cl-launch (4.0.1-1) unstable; urgency=low
+cl-launch (4.0.1.1-3) unstable; urgency=low
 
   * Speed up startup time by not upgrading ASDF unless needed.
   * Fix 4.0.0 bugs: support old implementations with older ASDF;
@@ -6,7 +6,7 @@ cl-launch (4.0.1-1) unstable; urgency=low
   * Add alias -E for --entry.
   * Eat our own dogfood with a CL release script.
 
- -- Francois-Rene Rideau <fare@tunes.org>  Mon, 28 Feb 2014 17:15:26 -0500
+ -- Francois-Rene Rideau <fare@tunes.org>  Fri, 28 Feb 2014 18:28:26 -0500
 
 cl-launch (4.0.0-1) unstable; urgency=low
 
@@ -16,7 +16,7 @@ cl-launch (4.0.0-1) unstable; urgency=low
   * Unix interpreter style invocation: /usr/bin/cl script arguments...
   * Require ASDF3 and its UIOP. No more headbanging with ASDF2.
 
- -- Francois-Rene Rideau <fare@tunes.org>  Mon, 27 Feb 2014 16:49:30 -0500
+ -- Francois-Rene Rideau <fare@tunes.org>  Thu, 27 Feb 2014 16:49:30 -0500
 
 cl-launch (3.22.1-1) unstable; urgency=low
 
diff --git a/release.lisp b/release.lisp
index 82f2313f6a52b7df1facea65d9e3a76c6adab29e..56313142d4091e644ac69cf0b345359c9d55bccd 100755
--- a/release.lisp
+++ b/release.lisp
@@ -49,8 +49,8 @@ exec "$(dirname $0)/cl-launch.sh" \
          (up (pathname-parent-directory-pathname (getcwd)))
          (origtarball (subpathname up (strcat "cl-launch_" tag ".orig.tar.gz"))))
     (delete-file-if-exists origtarball)
-    (run `(git-buildpackage --git-debian-branch=master --git-upstream-branch=master (--git-upstream-tag= ,tag) --git-tag --git-retag --git-ignore-branch))
-    (run `(lintian -c --fail-on-warnings (../cl-launch_ ,version _ ,(debian-arch) .changes))))
+    (run `(git-buildpackage --git-debian-branch=master --git-upstream-branch=master (--git-upstream-tag= ,tag) --git-tag --git-retag --git-ignore-branch) :show t)
+    (run `(lintian -c --fail-on-warnings (../cl-launch_ ,version _ ,(debian-arch) .changes)) :show t))
   (clean))
 
 (defun debian-package-all ()
@@ -61,23 +61,23 @@ exec "$(dirname $0)/cl-launch.sh" \
          (cl-launch-tag (strcat "cl-launch-" tag))
          (cldir (subpathname home "files/cl-launch/")))
     (debian-package)
-    (run `(./cl-launch.sh --include "." "-B" install_path))
-    (run `(./cl-launch.sh --no-include -o cl-launch "-B" install_bin))
+    (run `(./cl-launch.sh --include "." "-B" install_path) :show t)
+    (run `(./cl-launch.sh --no-include -o cl-launch "-B" install_bin) :show t)
     (with-current-directory (up)
-      (run `(rm -f ,cl-launch-tag))
-      (run `(ln -s cl-launch ,cl-launch-tag))
+      (run `(rm -f ,cl-launch-tag) :show t)
+      (run `(ln -s cl-launch ,cl-launch-tag) :show t)
       (run `(tar zcfh (,cldir ,cl-launch-tag .tar.gz)
-                  --exclude .git ,cl-launch-tag))
-      (run `(cp cl-launch/cl-launch.sh (,cldir cl-launch.sh)))
-      (run (format nil "mv cl-launch_~A* ~A" tag cldir))
-      (run `(rm -f ,cl-launch-tag)))
+                  --exclude .git ,cl-launch-tag) :show t)
+      (run `(cp cl-launch/cl-launch.sh (,cldir cl-launch.sh)) :show t)
+      (run (format nil "mv cl-launch_~A* ~A" tag cldir) :show t)
+      (run `(rm -f ,cl-launch-tag) :show t))
     (with-current-directory (cldir)
-      (run `(ln -sf (cl-launch ,tag .tar.gz) cl-launch.tar.gz))
-      (run/interactive `(gpg -b -a (cl-launch- ,tag .tar.gz)))
-      (run `(ln -sf (cl-launch- ,tag .tar.gz) cl-launch.tar.gz))
-      (run `(ln -sf (cl-launch- ,tag .tar.gz.asc) cl-launch.tar.gz.asc))
-      (run `(dput mentors (cl-launch_ ,version _ ,(debian-arch) .changes)))
-      (run `(rsync -av --delete ,cldir "common-lisp.net:/project/xcvb/public_html/cl-launch/")))
+      (run `(ln -sf (cl-launch ,tag .tar.gz) cl-launch.tar.gz) :show t)
+      (run/interactive `(gpg -b -a (cl-launch- ,tag .tar.gz)) :show t)
+      (run `(ln -sf (cl-launch- ,tag .tar.gz) cl-launch.tar.gz) :show t)
+      (run `(ln -sf (cl-launch- ,tag .tar.gz.asc) cl-launch.tar.gz.asc) :show t)
+      (run `(dput mentors (cl-launch_ ,version _ ,(debian-arch) .changes)) :show t)
+      (run `(rsync -av --delete ,cldir "common-lisp.net:/project/xcvb/public_html/cl-launch/") :show t))
     (values)))
 
 (defun cl-launch-version ()