diff options
Diffstat (limited to 'modules/git/commit.go')
-rw-r--r-- | modules/git/commit.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/git/commit.go b/modules/git/commit.go index 26c5445e2a..3e3641b096 100644 --- a/modules/git/commit.go +++ b/modules/git/commit.go @@ -87,8 +87,8 @@ func AddChanges(repoPath string, all bool, files ...string) error { } // AddChangesWithArgs marks local changes to be ready for commit. -func AddChangesWithArgs(repoPath string, gloablArgs []string, all bool, files ...string) error { - cmd := NewCommandNoGlobals(append(gloablArgs, "add")...) +func AddChangesWithArgs(repoPath string, globalArgs []string, all bool, files ...string) error { + cmd := NewCommandNoGlobals(append(globalArgs, "add")...) if all { cmd.AddArguments("--all") } |