forked from Azure/go-autorest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add azureusgovernment to environment list, fix Makefile (Azure#695)
* Add azureusgovernment to environment list, fix Makefile * add support for AZURECLOUD Co-authored-by: Joel Hendrix <[email protected]>
- Loading branch information
1 parent
f9a841b
commit 7525a9b
Showing
4 changed files
with
35 additions
and
24 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
DIR?=./autorest/ | ||
|
||
default: build | ||
|
||
build: fmt | ||
cd $(DIR); go install | ||
|
||
test: | ||
cd $(DIR); go test -v | ||
|
||
vet: | ||
cd $(DIR); go vet | ||
|
||
fmt: | ||
gofmt -w $(DIR) | ||
|
||
.PHONY: build test vet fmt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters