Skip to content

Commit

Permalink
Log when lockfile or manifest updates disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
davegaeddert committed Sep 10, 2019
1 parent c548985 commit 0439099
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/runner/updates.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ func newUpdatesFromDependencies(dependencies *schema.Dependencies, dependencyCon

updates.add(&updateDependencies, dependencyConfig)
}
} else {
output.Event("Lockfile updates disbled")
}

if *dependencyConfig.ManifestUpdates.Enabled {
Expand Down Expand Up @@ -87,6 +89,8 @@ func newUpdatesFromDependencies(dependencies *schema.Dependencies, dependencyCon
updates.add(&updateDependencies, dependencyConfig)
}
}
} else {
output.Event("Manifest updates disbled")
}

return updates, nil
Expand Down

0 comments on commit 0439099

Please sign in to comment.