gofmt
This commit is contained in:
parent
2bb6d24546
commit
734eab3cfd
3 changed files with 129 additions and 130 deletions
7
main.go
7
main.go
|
@ -1,13 +1,12 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"html/template"
|
||||
"net/http"
|
||||
"os"
|
||||
"os/exec"
|
||||
"net/http"
|
||||
"path/filepath"
|
||||
|
||||
"hacklab.nilfm.cc/quartzgun/renderer"
|
||||
|
@ -55,7 +54,7 @@ func runJob(secret string, next http.Handler) http.Handler {
|
|||
|
||||
// create working dir
|
||||
workingDir := filepath.Join("working", owner, repo, obj)
|
||||
if (os.MkdirAll(workingDir, 0750) != nil) {
|
||||
if os.MkdirAll(workingDir, 0750) != nil {
|
||||
w.WriteHeader(500)
|
||||
return
|
||||
}
|
||||
|
@ -121,7 +120,7 @@ func run(args []string) error {
|
|||
rtr.Get(`/status/(?P<owner>[^/]+)/(?P<repo>\S+)`, seeJobsForRepo(renderer.JSON("data")))
|
||||
rtr.Get(`/status/(?P<owner>[^/]+)/(?P<repo>[^/]+)/(?P<object>\S+)`, seeJobsForObject(renderer.JSON("data")))
|
||||
|
||||
http.ListenAndServe(":9999", rtr);
|
||||
http.ListenAndServe(":9999", rtr)
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue