diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | config.go | 2 | ||||
| -rw-r--r-- | spooler.go | 2 | ||||
| -rw-r--r-- | workers.go | 2 | 
4 files changed, 4 insertions, 4 deletions
| @@ -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) @@ -2,7 +2,7 @@ package main  import (  	"fmt" -	"github.com/go-yaml/yaml" +	"gopkg.in/yaml.v2"  	"io"  	"io/ioutil"  	"log" @@ -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" @@ -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" | 
