From 63e6229c27b78e05134646b4edc679960032ee2b Mon Sep 17 00:00:00 2001 From: Dan Bentley Date: Fri, 1 Feb 2019 12:23:26 -0800 Subject: [PATCH] engine: update docs links to point to tutorial (#1099) --- internal/store/engine_state.go | 2 +- internal/tiltfile/tiltfile.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/store/engine_state.go b/internal/store/engine_state.go index 0d7f45f92c..80ad1918d3 100644 --- a/internal/store/engine_state.go +++ b/internal/store/engine_state.go @@ -18,7 +18,7 @@ import ( v1 "k8s.io/api/core/v1" ) -const emptyTiltfileMsg = "Looks like you don't have any docker builds or services defined in your Tiltfile! Check out https://docs.tilt.build/ to get started." +const emptyTiltfileMsg = "Looks like you don't have any docker builds or services defined in your Tiltfile! Check out https://docs.tilt.build/tutorial.html to get started." type EngineState struct { // saved so that we can render in order diff --git a/internal/tiltfile/tiltfile.go b/internal/tiltfile/tiltfile.go index cc7277e6b2..e17df5b982 100644 --- a/internal/tiltfile/tiltfile.go +++ b/internal/tiltfile/tiltfile.go @@ -32,7 +32,7 @@ func Load(ctx context.Context, filename string, matching map[string]bool, logs i absFilename, err := ospath.RealAbs(filename) if err != nil { if os.IsNotExist(err) { - return nil, model.Manifest{}, []string{filename}, fmt.Errorf("No Tiltfile found at path '%s'. Check out https://docs.tilt.build/write_your_tiltfile.html", filename) + return nil, model.Manifest{}, []string{filename}, fmt.Errorf("No Tiltfile found at path '%s'. Check out https://docs.tilt.build/tutorial.html", filename) } absFilename, _ = filepath.Abs(filename) return nil, model.Manifest{}, []string{absFilename}, err