address linter complaints
1 file changed, 2 insertions(+), 2 deletions(-)
changed files
M routes/git.go → routes/git.go
@@ -24,7 +24,7 @@ w.Header().Set("content-type", "application/x-git-upload-pack-advertisement") w.Header().Set("cache-control", "no-cache") w.WriteHeader(http.StatusOK) - cmd := service.ServiceCommand{ + cmd := service.Command{ Dir: repo, Stdout: w, }@@ -54,7 +54,7 @@ w.Header().Set("Transfer-Encoding", "chunked") w.Header().Set("cache-control", "no-cache") w.WriteHeader(http.StatusOK) - cmd := service.ServiceCommand{ + cmd := service.Command{ Dir: repo, Stdout: w, }