From b08b22252d8d72325ae8a8a91653688761d0de8c Mon Sep 17 00:00:00 2001 From: Zach Ahn Date: Wed, 11 Dec 2024 15:14:26 -0500 Subject: [PATCH] fix: skip_lfs config option --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index 7aa1dc38..e0c38422 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -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"`