Skip to content

Commit

Permalink
engine: update docs links to point to tutorial (#1099)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbentley authored Feb 1, 2019
1 parent 8b4a524 commit 63e6229
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/store/engine_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion internal/tiltfile/tiltfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 63e6229

Please sign in to comment.