1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-29 23:17:32 +02:00
This commit is contained in:
Jesse Duffield 2022-01-08 11:08:34 +11:00
parent a7a61cdc83
commit c6b57d9b57

View File

@ -33,7 +33,7 @@ type WorkingTreeOSCommand interface {
func NewWorkingTreeCommands(
common *common.Common,
cmd oscommands.ICmdObjBuilder,
submodulesCommands *SubmoduleCommands,
submoduleCommands *SubmoduleCommands,
osCommand WorkingTreeOSCommand,
fileLoader *loaders.FileLoader,
) *WorkingTreeCommands {
@ -41,7 +41,7 @@ func NewWorkingTreeCommands(
Common: common,
cmd: cmd,
os: osCommand,
submodule: submodulesCommands,
submodule: submoduleCommands,
fileLoader: fileLoader,
}
}