summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatolaZ <katolaz@freaknet.org>2017-07-21 14:31:12 +0100
committerKatolaZ <katolaz@freaknet.org>2017-07-21 14:31:12 +0100
commit0a75342d34948296c7745c425e9c6ada6385d49a (patch)
treed9dfe19c0b50daec0f307e456322aef9474f722b
parentbc495e28f8e622cab87a26cc25c7b5e8aa2c8daa (diff)
corrected dependency
-rw-r--r--Makefile2
-rw-r--r--config.go2
-rw-r--r--spooler.go2
-rw-r--r--workers.go2
4 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index f89c955..5d24c9a 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ all: scorshd
deps:
go get 'github.com/fsnotify/fsnotify'
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'
scorshd: $(SERVER_SOURCES)
diff --git a/config.go b/config.go
index 970c49c..8cdd172 100644
--- a/config.go
+++ b/config.go
@@ -2,7 +2,7 @@ package main
import (
"fmt"
- "github.com/go-yaml/yaml"
+ "gopkg.in/yaml.v2"
"io"
"io/ioutil"
"log"
diff --git a/spooler.go b/spooler.go
index d2b31c2..ccf42dc 100644
--- a/spooler.go
+++ b/spooler.go
@@ -3,7 +3,7 @@ package main
import (
"fmt"
"github.com/fsnotify/fsnotify"
- "github.com/go-yaml/yaml"
+ "gopkg.in/yaml.v2"
"io/ioutil"
"log"
"os"
diff --git a/workers.go b/workers.go
index 415d169..be65b1e 100644
--- a/workers.go
+++ b/workers.go
@@ -2,8 +2,8 @@ package main
import (
"fmt"
- "github.com/go-yaml/yaml"
"golang.org/x/crypto/openpgp"
+ "gopkg.in/yaml.v2"
"io/ioutil"
"log"
"os"