From d77f1bc651eb04f7f1d255e8510e43e631303f9d Mon Sep 17 00:00:00 2001 From: Jan Moringen Date: Mon, 9 Oct 2023 09:58:08 +0200 Subject: [PATCH] Fix misspelled class name in src/model/aspects/aspects-scm.lisp * src/model/aspects/aspects-scm.lisp (define-aspect archive): fix misspelled class name JENKINS.API.BUILDER/SHELL -> JENKINS.API:BUILDER/SHELL * changes.sexp (release 0.35): added bugfix entry fixes #62 --- changes.sexp | 4 ++++ src/model/aspects/aspects-scm.lisp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/changes.sexp b/changes.sexp index eb903f8..93805a2 100644 --- a/changes.sexp +++ b/changes.sexp @@ -1,5 +1,9 @@ ((:release "0.35" nil + (:bugfix + "Generating Jenkins jobs for projects which use the" (:verb "archive") + "scm no longer fails.") + (:enhancement "The Jenkins installation performed by the" (:verb "install-jenkins") "command now includes the" (:verb "permissive-script-security") "plugin diff --git a/src/model/aspects/aspects-scm.lisp b/src/model/aspects/aspects-scm.lisp index a45990a..6345045 100644 --- a/src/model/aspects/aspects-scm.lisp +++ b/src/model/aspects/aspects-scm.lisp @@ -41,7 +41,7 @@ ;; Generate archive download and extraction as a shell builder. (let ((command (extend! aspect spec 'string :command))) (push (constraint! (build ((:before t))) - (make-instance 'jenkins.api.builder/shell :command command)) + (make-instance 'jenkins.api:builder/shell :command command)) (jenkins.api:builders job)))) (defmethod extend! ((aspect aspect-archive)