Skip to content

Commit

Permalink
Fix misspelled class name in src/model/aspects/aspects-scm.lisp
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
scymtym committed Oct 9, 2023
1 parent f574da7 commit d77f1bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions changes.sexp
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/model/aspects/aspects-scm.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d77f1bc

Please sign in to comment.