Skip to content

Commit

Permalink
fix: add godoc to Fs var in config.go (#7004)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-prindle authored Jan 11, 2022
1 parent 05064d1 commit 4393df2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/skaffold/util/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ import (
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/output/log"
)

var stdin []byte
// Fs is the underlying filesystem to use for reading skaffold project files & configuration. OS FS by default
var Fs = afero.NewOsFs()

var stdin []byte

// ReadConfiguration reads a `skaffold.yaml` configuration and
// returns its content.
func ReadConfiguration(filename string) ([]byte, error) {
Expand Down

0 comments on commit 4393df2

Please sign in to comment.