Skip to content

Commit

Permalink
Merge pull request #3626 from fabriziopandini/fix-tilt-file
Browse files Browse the repository at this point in the history
🐛 Fix regression in Tiltfile
  • Loading branch information
k8s-ci-robot authored Sep 10, 2020
2 parents 7d142cb + 7bb3271 commit 159064c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def enable_provider(name):
p = providers.get(name)

context = p.get("context")
go_main = p.get("go_main")
go_main = p.get("go_main", "main.go")

# Prefix each live reload dependency with context. For example, for if the context is
# test/infra/docker and main.go is listed as a dep, the result is test/infra/docker/main.go. This adjustment is
Expand Down Expand Up @@ -223,7 +223,7 @@ def enable_provider(name):
],
)

if p.get("kustomize_config"):
if p.get("kustomize_config", True):
# Copy all the substitutions from the user's tilt-settings.json into the environment. Otherwise, the substitutions
# are not available and their placeholders will be replaced with the empty string when we call kustomize +
# envsubst below.
Expand Down

0 comments on commit 159064c

Please sign in to comment.