Skip to content

Commit

Permalink
Describe OPERATION:PROJECT-CONFIGURATION-KEY
Browse files Browse the repository at this point in the history
  • Loading branch information
foretspaisibles committed Sep 24, 2024
1 parent 0456926 commit 986c42c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libexec/lisp/operation.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@
(namestring (project-configuration-file project)))))

(defun project-configuration-key (designator)
"The configuration key for DESIGNATOR.
This is a string which can be used as a configuration key in configuration
files used by git."
(flet ((key-component (object)
(etypecase object
(string
Expand Down Expand Up @@ -198,7 +201,7 @@

(defun make-volume (name project)
(docker:make-volume
:name (concatenate 'string "cid-" (project-name project) "-" name)))
:name (concatenate 'string "cid" "-" (project-name project) "-" name)))

(defun volume-database (project)
(flet ((volume-name (binding)
Expand Down

0 comments on commit 986c42c

Please sign in to comment.