in helpers/foundation-deployer/stages/destroy.go [35:49]
func DestroyBootstrapStage(t testing.TB, s steps.Steps, c CommonConf) error {
if err := forceBackendMigration(t, BootstrapRepo, "envs", "shared", c); err != nil {
return err
}
stageConf := StageConf{
Stage: BootstrapStep,
Step: BootstrapStep,
Repo: BootstrapRepo,
GroupingUnits: []string{"envs"},
Envs: []string{"shared"},
}
return destroyStage(t, stageConf, s, c)
}