diff options
| author | pasha-codefresh <pavel@codefresh.io> | 2024-05-31 17:44:04 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-31 17:44:04 +0300 |
| commit | c1784a37df2dec28c5d25a93070a3fe159142287 (patch) | |
| tree | 1a2c8d23f627519f8c3a8f36b48d51322c1049d0 | |
| parent | f282927d72f890111297fd75eb64b53409c0223a (diff) | |
| parent | dc190d24d11d4bec50b595035757bb914f5a01cb (diff) | |
Merge branch 'master' into fix/set-default-image-alias-with-helmvalues
| -rw-r--r-- | ext/git/writer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/git/writer.go b/ext/git/writer.go index a2f4cc6..20a678f 100644 --- a/ext/git/writer.go +++ b/ext/git/writer.go @@ -88,7 +88,7 @@ func (m *nativeGitClient) Push(remote string, branch string, force bool) error { // Add adds a path spec to the repository func (m *nativeGitClient) Add(path string) error { - return m.runCredentialedCmd("git", "add", path) + return m.runCredentialedCmd("add", path) } // SymRefToBranch retrieves the branch name a symbolic ref points to |
