bthesorceror
2018-7-16 09:36:28

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?


lexi.lambda
2018-7-16 09:49:08

@bthesorceror I don’t believe so


bthesorceror
2018-7-16 10:10:37

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


zenspider
2018-7-16 10:12:16

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


bthesorceror
2018-7-16 10:16:54

@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.


zenspider
2018-7-16 11:04:53

that’s a different question entirely


zenspider
2018-7-16 11:05:18

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


bthesorceror
2018-7-16 17:11:57

thanks @zenspider I will give that a shot


bthesorceror
2018-7-16 17:28:36

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


zenspider
2018-7-16 21:10:15

awesome