From 974a52df7e9aae152a3fc66ab48b560425431227 Mon Sep 17 00:00:00 2001 From: MichaelOultram Date: Mon, 3 Aug 2015 22:56:27 +0100 Subject: [PATCH] Fixing build errors --- .travis.yml | 1 + youtube_dl.go | 8 -------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 800a9af..8864edb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ cache: - $HOME/bin - $HOME/gopath/bin - $HOME/gopath/pkg + - $HOME/gopath/src/github.com/nitrous-io - $HOME/gopath/src/github.com/MichaelOultram/mumbledj/.vendor before_script: diff --git a/youtube_dl.go b/youtube_dl.go index 52245a2..6484f95 100644 --- a/youtube_dl.go +++ b/youtube_dl.go @@ -1,20 +1,12 @@ package main import ( - "encoding/json" "errors" "fmt" - "io/ioutil" - "net/http" "os" "os/exec" - "regexp" - "strconv" - "strings" "time" - "github.com/jmoiron/jsonq" - "github.com/layeh/gumble/gumble" "github.com/layeh/gumble/gumble_ffmpeg" )