Skip to content

Commit

Permalink
chore: Updates from main
Browse files Browse the repository at this point in the history
  • Loading branch information
jshlbrd committed Oct 7, 2024
1 parent 7b804c4 commit 9ae701c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/substation/vet.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ array:

// Catches an edge case where the user is looking for help.
if path == "help" {
fmt.Printf("warning: \"%s\" matched no files\n", path)
fmt.Printf("warning: %q matched no files\n", path)
return nil
}

Expand All @@ -98,7 +98,7 @@ func vetFile(arg string, extVars map[string]string) error {

switch filepath.Ext(arg) {
case ".jsonnet", ".libsonnet":
mem, err := buildFile(arg, extVars)
mem, err := compileFile(arg, extVars)
if err != nil {
// This is an error in the Jsonnet syntax.
// The line number and column range are included.
Expand Down

0 comments on commit 9ae701c

Please sign in to comment.