Fixing build errors

This commit is contained in:
MichaelOultram 2015-08-03 22:56:27 +01:00
parent 202221e526
commit 974a52df7e
2 changed files with 1 additions and 8 deletions

View file

@ -6,6 +6,7 @@ cache:
- $HOME/bin - $HOME/bin
- $HOME/gopath/bin - $HOME/gopath/bin
- $HOME/gopath/pkg - $HOME/gopath/pkg
- $HOME/gopath/src/github.com/nitrous-io
- $HOME/gopath/src/github.com/MichaelOultram/mumbledj/.vendor - $HOME/gopath/src/github.com/MichaelOultram/mumbledj/.vendor
before_script: before_script:

View file

@ -1,20 +1,12 @@
package main package main
import ( import (
"encoding/json"
"errors" "errors"
"fmt" "fmt"
"io/ioutil"
"net/http"
"os" "os"
"os/exec" "os/exec"
"regexp"
"strconv"
"strings"
"time" "time"
"github.com/jmoiron/jsonq"
"github.com/layeh/gumble/gumble"
"github.com/layeh/gumble/gumble_ffmpeg" "github.com/layeh/gumble/gumble_ffmpeg"
) )