corrected dependency

lint-refactor
KatolaZ 8 years ago
parent bc495e28f8
commit 0a75342d34
  1. 2
      Makefile
  2. 2
      config.go
  3. 2
      spooler.go
  4. 2
      workers.go

@ -13,7 +13,7 @@ all: scorshd
deps: deps:
go get 'github.com/fsnotify/fsnotify' go get 'github.com/fsnotify/fsnotify'
go get 'github.com/libgit2/git2go' go get 'github.com/libgit2/git2go'
go get 'github.com/go-yaml/yaml' go get 'gopkg.in/yaml.v2'
go get 'golang.org/x/crypto/openpgp' go get 'golang.org/x/crypto/openpgp'
scorshd: $(SERVER_SOURCES) scorshd: $(SERVER_SOURCES)

@ -2,7 +2,7 @@ package main
import ( import (
"fmt" "fmt"
"github.com/go-yaml/yaml" "gopkg.in/yaml.v2"
"io" "io"
"io/ioutil" "io/ioutil"
"log" "log"

@ -3,7 +3,7 @@ package main
import ( import (
"fmt" "fmt"
"github.com/fsnotify/fsnotify" "github.com/fsnotify/fsnotify"
"github.com/go-yaml/yaml" "gopkg.in/yaml.v2"
"io/ioutil" "io/ioutil"
"log" "log"
"os" "os"

@ -2,8 +2,8 @@ package main
import ( import (
"fmt" "fmt"
"github.com/go-yaml/yaml"
"golang.org/x/crypto/openpgp" "golang.org/x/crypto/openpgp"
"gopkg.in/yaml.v2"
"io/ioutil" "io/ioutil"
"log" "log"
"os" "os"

Loading…
Cancel
Save