Skip to content

Commit

Permalink
fix: archives require gnu
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Jan 12, 2024
1 parent d2ac861 commit 88cb541
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lisp/init/cask.el
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ Optional argument CONTENTS is used for nested directives. e.g. development."

(eask-start
;; Preparation
(eask-with-archives `("jcs-elpa" "melpa")
(eask-with-archives `("gnu" "melpa" "jcs-elpa")
(eask-package-install 'package-build)
(eask-package-install 'cask))

Expand Down
2 changes: 1 addition & 1 deletion lisp/lint/elisp-lint.el
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

(eask-start
;; Preparation
(eask-with-archives "melpa"
(eask-with-archives '("gnu" "melpa")
(eask-package-install 'elisp-lint))
(setq eask--elisp-lint-version (eask-package--version-string 'elisp-lint))

Expand Down
2 changes: 1 addition & 1 deletion lisp/lint/elsa.el
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

(eask-start
;; Preparation
(eask-with-archives "melpa"
(eask-with-archives '("gnu" "melpa")
(eask-package-install 'elsa))
(setq eask--elsa-version (eask-package--version-string 'elsa))

Expand Down
2 changes: 1 addition & 1 deletion lisp/lint/package.el
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

(eask-start
;; Preparation
(eask-with-archives "melpa"
(eask-with-archives '("gnu" "melpa")
(eask-package-install 'package-lint))
(setq eask--package-lint-version (eask-package--version-string 'package-lint))

Expand Down
2 changes: 1 addition & 1 deletion lisp/test/ert-runner.el
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
(when (= eask-verbosity 4) (setq ert-runner-verbose t))))

(eask-start
(eask-with-archives "melpa"
(eask-with-archives '("gnu" "melpa")
(eask-package-install 'ert-runner))
(require 'ert-runner))

Expand Down
2 changes: 1 addition & 1 deletion lisp/test/melpazoid.el
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

(eask-start
;; Preparation
(eask-with-archives "melpa"
(eask-with-archives '("gnu" "melpa")
(eask-package-install 'package-lint)
(eask-package-install 'pkg-info))
;; Start test
Expand Down

0 comments on commit 88cb541

Please sign in to comment.