Skip to content

Commit

Permalink
fix: skip_lfs config option (#889)
Browse files Browse the repository at this point in the history
  • Loading branch information
zachahn authored Dec 12, 2024
1 parent 2077242 commit b5b7776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type Config struct {
NoTTY bool `koanf:"no_tty" mapstructure:"no_tty,omitempty"`
AssertLefthookInstalled bool `koanf:"assert_lefthook_installed" mapstructure:"assert_lefthook_installed,omitempty"`
Colors interface{} `mapstructure:"colors,omitempty"`
SkipLFS bool `mapstructure:"skip_lfs,omitempty"`
SkipLFS bool `koanf:"skip_lfs" mapstructure:"skip_lfs,omitempty"`

// Deprecated: use Remotes
Remote *Remote `mapstructure:"remote,omitempty"`
Expand Down

0 comments on commit b5b7776

Please sign in to comment.