From c6b57d9b5700cc706902ff5d6e160ba832bf2a77 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sat, 8 Jan 2022 11:08:34 +1100 Subject: [PATCH] WIP --- pkg/commands/working_tree.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/commands/working_tree.go b/pkg/commands/working_tree.go index 05717cca6..a44caceb5 100644 --- a/pkg/commands/working_tree.go +++ b/pkg/commands/working_tree.go @@ -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, } }