Skip to content

Fixed contentful-go repo address #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
go get github.com/hashicorp/terraform/terraform
go get github.com/hashicorp/terraform/helper/resource
go get github.com/hashicorp/terraform/helper/schema
go get github.com/tolgaakyuz/contentful-go
go get github.com/contentful-labs/contentful-go
2 changes: 1 addition & 1 deletion provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/terraform"
contentful "github.com/tolgaakyuz/contentful-go"
contentful "github.com/contentful-labs/contentful-go"
)

// Provider does shit
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_apikey.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/hashicorp/terraform/helper/schema"
contentful "github.com/tolgaakyuz/contentful-go"
contentful "github.com/contentful-labs/contentful-go"
)

func resourceContentfulAPIKey() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_apikey_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
contentful "github.com/tolgaakyuz/contentful-go"
contentful "github.com/contentful-labs/contentful-go"
)

func TestAccContentfulAPIKey_Basic(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_contenttype.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/hashicorp/terraform/helper/schema"
contentful "github.com/tolgaakyuz/contentful-go"
contentful "github.com/contentful-labs/contentful-go"
)

func resourceContentfulContentType() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_contenttype_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
contentful "github.com/tolgaakyuz/contentful-go"
contentful "github.com/contentful-labs/contentful-go"
)

func TestAccContentfulContentType_Basic(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_locale.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/hashicorp/terraform/helper/schema"
contentful "github.com/tolgaakyuz/contentful-go"
contentful "github.com/contentful-labs/contentful-go"
)

func resourceContentfulLocale() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_locale_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
contentful "github.com/tolgaakyuz/contentful-go"
contentful "github.com/contentful-labs/contentful-go"
)

func TestAccContentfulLocales_Basic(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_space.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/hashicorp/terraform/helper/schema"
contentful "github.com/tolgaakyuz/contentful-go"
contentful "github.com/contentful-labs/contentful-go"
)

func resourceContentfulSpace() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_space_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
contentful "github.com/tolgaakyuz/contentful-go"
contentful "github.com/contentful-labs/contentful-go"
)

func TestAccContentfulSpace_Basic(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/hashicorp/terraform/helper/schema"
contentful "github.com/tolgaakyuz/contentful-go"
contentful "github.com/contentful-labs/contentful-go"
)

func resourceContentfulWebhook() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
contentful "github.com/tolgaakyuz/contentful-go"
contentful "github.com/contentful-labs/contentful-go"
)

func TestAccContentfulWebhook_Basic(t *testing.T) {
Expand Down