Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Feb 18, 2023
1 parent b039b34 commit 8ad3f7d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: true


- uses: actions/setup-node@v3
with:
node-version: 16

- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions lisp/_prepare.el
Original file line number Diff line number Diff line change
Expand Up @@ -853,9 +853,9 @@ This uses function `locate-dominating-file' to look up directory tree."
(if (file-exists-p eask-package-file)
(eask--try-construct-package-desc eask-package-file)
(eask-warn "Package-file seems to be missing `%s'" file))
(when-let (((not eask-package-descriptor))
(pkg-file (eask-pkg-el)))
(eask-f-package-descriptor pkg-file)
(when (and (not eask-package-descriptor) ; prevent multiple definition error
(not eask-package-desc)) ; check if constructed
(eask-f-package-descriptor (eask-pkg-el))
;; XXX: Make sure DSL package descriptor is set back to `nil'
(setq eask-package-descriptor nil))))

Expand Down

0 comments on commit 8ad3f7d

Please sign in to comment.