diff --git a/tools/asdf-tools b/tools/asdf-tools
index 56175c5a2433c02cff23487e0658164bf540cedb..dcfcdb249580125f6eaf30a480bfb0d77dca6e44 100755
--- a/tools/asdf-tools
+++ b/tools/asdf-tools
@@ -13,7 +13,9 @@
 
 ;;; ASDF3 is loaded, now use it!
 (eval-when (:compile-toplevel :load-toplevel :execute)
-  (#-quicklisp asdf:load-system #+quicklisp ql:quickload :asdf-tools))
+  #-quicklisp (asdf:load-system :asdf-tools :verbose nil)
+  #+quicklisp (ql:quickload :asdf-tools :verbose nil :explain nil :prompt nil))
+
 
 ;;; Actually run the stuff!
 (uiop:restore-image :entry-point 'asdf-tools::entry-point)
diff --git a/tools/release.lisp b/tools/release.lisp
index b6d6353bc5d64895c930c5363060a370d57857cd..49d26a62b5f466d9b608bcb34b5e9312bdfbe808 100644
--- a/tools/release.lisp
+++ b/tools/release.lisp
@@ -33,7 +33,6 @@
 
 (defun make-tarball-under-build (name base files)
   (check-type name string)
-  (ensure-pathname base :want-absolute t :want-existing t :want-directory t)
   (dolist (f files)
     (check-type f string))
   (let* ((base
@@ -61,7 +60,7 @@
     (ensure-directories-exist destination)
     (run `(cp "-pHux" --parents ,@files ,destination) :directory base :show t)
     (run `(tar "zcfC" ,tarball ,(pn "build/") (,name /)) :show t)
-    (delete-directory-tree destination :validate (lambda (x) (equal x destination)))
+    (delete-directory-tree destination :validate (complement #'wild-pathname-p))
     (values)))
 
 (defun driver-files ()
@@ -87,10 +86,8 @@
 
 (defun make-git-tarball ()
   (build-asdf)
-  (with-asdf-dir ()
-    (run `(tar zcf ("build/" ,(asdf-git-name) ".tar.gz") build/asdf.lisp ,@(run/lines '(git ls-files))
-               (asdf-git-name)) :show t))
-  t)
+  (make-tarball-under-build (asdf-git-name) (pn)
+                            (cons "build/asdf.lisp" (run/lines '(git ls-files)))))
 
 (defun asdf-lisp-name ()
   (format nil "asdf-~A.lisp" *version*))