Skip to content

Commit

Permalink
Fix output folder of go sdk in adp (Azure#11862)
Browse files Browse the repository at this point in the history
* fix output folder in adp

* add the missing multiapi part
  • Loading branch information
ArcturusZhang authored and josuh committed Jan 6, 2021
1 parent 722b2e6 commit d77c90a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion specification/adp/resource-manager/readme.go.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,18 @@ go:
clear-output-folder: true
```
### Go multi-api
``` yaml $(go) && $(multiapi)
batch:
- tag: package-2020-07-01-preview
```
### Tag: package-2020-07-01-preview and go
These settings apply only when `--tag=package-2020-07-01-preview --go` is specified on the command line.
Please also specify `--go-sdks-folder=<path to the root directory of your azure-sdk-for-go clone>`.

```yaml $(tag) == 'package-2020-07-01-preview' && $(go)
output-folder: $(go-sdk-folder)/services/preview/adp/mgmt/2019-07-01-preview
output-folder: $(go-sdk-folder)/services/preview/$(namespace)/mgmt/2019-07-01-preview/$(namespace)
```

0 comments on commit d77c90a

Please sign in to comment.