()
| 293 | } |
| 294 | |
| 295 | func (u *upstream) startContainer() error { |
| 296 | _, err := u.client.Execute(u.sync.ctx, &remote.Command{ |
| 297 | Cmd: "touch", |
| 298 | Args: []string{restart.TouchPath}, |
| 299 | }) |
| 300 | return err |
| 301 | } |
| 302 | |
| 303 | func (u *upstream) execCommandsAfterApply(changedFiles []string) error { |
| 304 | u.initialSyncCompletedMutex.Lock() |
no test coverage detected