(migrationContext *base.MigrationContext)
| 211 | } |
| 212 | |
| 213 | func NewHooksExecutor(migrationContext *base.MigrationContext) *HooksExecutor { |
| 214 | return &HooksExecutor{ |
| 215 | migrationContext: migrationContext, |
| 216 | writer: os.Stderr, |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | func (he *HooksExecutor) applyEnvironmentVariables(extraVariables ...string) []string { |
| 221 | env := os.Environ() |
no outgoing calls
searching dependent graphs…