From c368ae2b97674ae78fec583d8871e37fe3fa903b Mon Sep 17 00:00:00 2001 From: Dan Esparza Date: Mon, 12 Jun 2017 21:18:45 -0400 Subject: [PATCH] Fixed influxdb import path --- circle.yml | 2 +- cmd/start.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/circle.yml b/circle.yml index dbbc9ba..5839b61 100644 --- a/circle.yml +++ b/circle.yml @@ -28,7 +28,7 @@ dependencies: # Go configuration on CircleCI is wonky. Make sure our code # is in the correct Go workspace structure - rsync -azC --delete ./ --include=".git" "$PROJECT_DIR" - - go get -u -a -t -d -v $PACKAGE_PATH/... + - go get -t -d -v $PACKAGE_PATH/... cache_directories: - ~/download test: diff --git a/cmd/start.go b/cmd/start.go index 4770f11..542fe89 100644 --- a/cmd/start.go +++ b/cmd/start.go @@ -23,7 +23,7 @@ import ( "github.com/danesparza/embd/sensor/envirophat" "github.com/gorilla/mux" "github.com/gregdel/pushover" - client "github.com/influxdb/influxdb/client/v2" + client "github.com/influxdata/influxdb/client/v2" "github.com/kidoman/embd" "github.com/montanaflynn/stats" "github.com/rs/cors"