-
Hi there, I'm just trying to get started. I've created the following Eask file at ;; -*- emacs-lisp -*-
(package "projection"
"0.1.0"
"Project type support for project.el")
(website-url "https://github.com/mohkale/projection")
(keywords "project" "convenience")
(package-file "src/projection.el")
(files "src/*.el" "src/projection-multi/*.el")
(source "gnu")
(source "melpa")
(depends-on "emacs" "29")
(depends-on "compile-multi")
(development
(depends-on "f")
(depends-on "buttercup")) When I run eask install it fails.
Did I miss something in the docs? I'm not sure why it's failing 🤔. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
eask install-deps -g --dev Ah, okay. I didn't correctly read the question the first time. With |
Beta Was this translation helpful? Give feedback.
-
Hope you won't mind me using this discussion to ask other debugging questions. I tried running |
Beta Was this translation helpful? Give feedback.
In development scope, you need to add flag--dev
:Ah, okay. I didn't correctly read the question the first time.
With
-g
flag, your elpa directory is pointed to~/.eask/
, so you need your Eask-file to be there and not the project root.