From 10dee1bd686e7443f7c4aca90cfcbfad970bf0f9 Mon Sep 17 00:00:00 2001 From: Ross Smith II Date: Sun, 21 Dec 2014 11:22:24 -0800 Subject: [PATCH] Temporarily fix build by forking golang.org/x/oauth2 @ b3f9a68 --- builder/googlecompute/driver_gce.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/builder/googlecompute/driver_gce.go b/builder/googlecompute/driver_gce.go index 674019f52..13d765ce1 100644 --- a/builder/googlecompute/driver_gce.go +++ b/builder/googlecompute/driver_gce.go @@ -8,8 +8,12 @@ import ( "code.google.com/p/google-api-go-client/compute/v1" "github.com/mitchellh/packer/packer" - "golang.org/x/oauth2" - "golang.org/x/oauth2/google" + + // oauth2 "github.com/rasa/oauth2-fork-b3f9a68" + "github.com/rasa/oauth2-fork-b3f9a68" + + // oauth2 "github.com/rasa/oauth2-fork-b3f9a68/google" + "github.com/rasa/oauth2-fork-b3f9a68/google" ) // driverGCE is a Driver implementation that actually talks to GCE.