mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-01-03 13:29:36 -05:00
removed extra parentheses
This commit is contained in:
parent
f229be7a60
commit
ce511d53db
1 changed files with 1 additions and 1 deletions
|
|
@ -148,7 +148,7 @@ func resourceDockerContainerRead(d *schema.ResourceData, meta interface{}) error
|
|||
}
|
||||
|
||||
if container.State.Running ||
|
||||
(!container.State.Running && !d.Get("must_run").(bool)) {
|
||||
!container.State.Running && !d.Get("must_run").(bool) {
|
||||
break
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue