Add that pulumictl is needed to make pulumi (#8196)

This commit is contained in:
Fraser Waters 2021-10-12 17:51:12 +01:00 committed by GitHub
parent b978a9f2d2
commit b56d902afe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View file

@ -15,6 +15,7 @@ To hack on Pulumi, you'll need to get a development environment set up. You'll w
- [pipenv](https://github.com/pypa/pipenv)
- [Golangci-lint](https://github.com/golangci/golangci-lint)
- [Yarn](https://yarnpkg.com/)
- [Pulumictl](https://github.com/pulumi/pulumictl)
## Getting dependencies on macOS

View file

@ -17,6 +17,8 @@ TEST_ALL_DEPS = build $(SUB_PROJECTS:%=%_install)
ensure::
$(call STEP_MESSAGE)
@echo "Check for pulumictl"; [ -e "$(shell which pulumictl)" ]
@echo "cd sdk && go mod download"; cd sdk && go mod download
@echo "cd pkg && go mod download"; cd pkg && go mod download
@echo "cd tests && go mod download"; cd tests && go mod download