Skip to content

Commit

Permalink
generator-go-sdk: fix output path for resource packages
Browse files Browse the repository at this point in the history
  • Loading branch information
manicminer committed Aug 5, 2024
1 parent c39cc5c commit 8855269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/generator-go-sdk/internal/generator/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func (i ServiceGeneratorInput) generatorData(settings Settings) GeneratorData {
versionDirectoryName := strings.ToLower(i.VersionName)

versionOutputPath := filepath.Join(i.OutputDirectory, servicePackageName, versionDirectoryName)
resourceOutputPath := filepath.Join(versionOutputPath, versionDirectoryName)
resourceOutputPath := filepath.Join(versionOutputPath, resourcePackageName)

useNewBaseLayer := settings.ShouldUseNewBaseLayer(i.ServiceName, i.VersionName)

Expand Down

0 comments on commit 8855269

Please sign in to comment.