Merge pull request #154738 from sternenseemann/quicklisp-help-screen

quicklisp-to-nix: document --cacheFaslDir option in help screen
This commit is contained in:
7c6f434c 2022-01-12 12:00:12 +00:00 committed by GitHub
commit 754afda4c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,7 +44,7 @@
(wrap :ql-dist short-description)
(defun escape-filename (s)
(format
(format
nil "~a~{~a~}"
(if (scan "^[a-zA-Z_]" s) "" "_")
(loop
@ -260,9 +260,10 @@ This function stores results for memoization purposes in files within
(defun print-usage-and-quit ()
"Does what it says on the tin."
(format *error-output* "Usage:
~A [--help] [--cacheSystemInfoDir <path>] <work-dir>
~A [--help] [--cacheSystemInfoDir <path>] [--cacheFaslDir <path>] <work-dir>
Arguments:
--cacheSystemInfoDir Store computed system info in the given directory
--cacheFaslDir Store intermediate fast load files in the given directory
--help Print usage and exit
<work-dir> Path to directory with quicklisp-to-nix-systems.txt
" (uiop:argv0))