
is there a way to install a project’s dependencies from info.rkt with raco pkg install without installing the project itself as a package?

@bthesorceror I don’t believe so

ok, bummer. Thanks @lexi.lambda :slightly_smiling_face:

@bthesorceror if you’re working on that project, the actual install will just be a symlink to the working directory by default

@zenspider yeah that is what I was seeing but what I wanted to get around is that if I added another dependency and ran install again it stopped without adding the dependency because the project was already installed.

that’s a different question entirely

I think some combo of --auto
and --update-deps
will do you

thanks @zenspider I will give that a shot

raco pkg update --auto --update-deps
that worked :smile:

awesome