This repository was archived by the owner on Sep 9, 2020. It is now read-only.
This repository was archived by the owner on Sep 9, 2020. It is now read-only.
dep ensure -n isn't actually a no-op #145
Closed
Description
Go 1.8 rc1 / osx
ensure -n is documented as a dry-run, but still does all the work, populating the vendor folder if it's not already there.
With no vendor/ directory present:
dep init
dep ensure -n
vendor/ is created as if -n was never specified.
Since there is no output normally, I'm assuming this is meant to be used alongside with the -v option.
(as of commit 1b193f4)