Skip to content

Commit 53ed840

Browse files
committed
Also clear the system file index on recrank.
1 parent 2fcf961 commit 53ed840

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

dist-cache.lisp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22

33
(in-package #:quicklisp-controller)
44

5+
(defvar *system-file-index-file*
6+
#p"quicklisp-controller:dist;system-file-index")
7+
58
(defun clear-tar-cache ()
69
(rm-rf "quicklisp-controller:dist;tar-cache;"))
710

811
(defun clear-build-cache ()
9-
(rm-rf "quicklisp-controller:dist;build-cache;"))
12+
(rm-rf "quicklisp-controller:dist;build-cache;")
13+
(rm-rf *system-file-index-file*))
1014

1115
(defun clear-build-artifacts ()
1216
(rm-rf "quicklisp-controller:dist;build-artifacts;"))
@@ -221,9 +225,6 @@ if needed."
221225
table))
222226

223227

224-
(defvar *system-file-index-file*
225-
#p"quicklisp-controller:dist;system-file-index")
226-
227228
(defun update-system-file-index ()
228229
(let ((table (asdf-systems-table)))
229230
(save-asdf-system-table table *system-file-index-file*)

0 commit comments

Comments
 (0)