summaryrefslogtreecommitdiff
path: root/config/common.go
diff options
context:
space:
mode:
Diffstat (limited to 'config/common.go')
-rw-r--r--config/common.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/common.go b/config/common.go
index 32311b8..90c9c5b 100644
--- a/config/common.go
+++ b/config/common.go
@@ -32,7 +32,7 @@ func (cc *CommonConfig) Merge(cc2 CommonConfig) {
cc.Lives.Merge(cc2.Lives)
cc.Runs.Merge(cc2.Runs)
- if len(cc.EntryPoint) < 1 {
+ if cc2.EntryPoint != nil {
cc.EntryPoint = cc2.EntryPoint
}
}