Skip to content

Commit

Permalink
add prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Barber authored and Barber committed Dec 14, 2023
1 parent c366409 commit 29eabb7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions backend/internal/processes/bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,11 @@ func provisionS3(appConfig *config.AppConfig) error {

func initTerraform(store database.Datastore, appconf *config.AppConfig) error {
fs := afero.NewOsFs()
writeInitTemplate(fs, appconf)
err := installUnityCloudEnv(store, appconf)
err := writeInitTemplate(fs, appconf)
if err != nil {
return err
}
err = installUnityCloudEnv(store, appconf)
if err != nil {
return err
}
Expand Down

0 comments on commit 29eabb7

Please sign in to comment.