diff options
| -rw-r--r-- | internal/git/git.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/git/git.go b/internal/git/git.go index 2455977..a7a3d5a 100644 --- a/internal/git/git.go +++ b/internal/git/git.go @@ -84,7 +84,7 @@ func buildArgs(op remote.Operation, remoteName, repoPath string, force bool) []s case remote.Fetch: return []string{"fetch", remoteName} default: - return []string{} + return nil } } |