From b5b777635eed7900c0e2254ff6656104d5880a4c Mon Sep 17 00:00:00 2001 From: Zach Ahn Date: Thu, 12 Dec 2024 02:06:25 -0500 Subject: [PATCH] fix: skip_lfs config option (#889) --- 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..d49f2fe5 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"`