Skip to content

Commit

Permalink
Update module name to match location on GitHub (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
MissedTheMark authored Sep 20, 2024
1 parent 62fab18 commit b4a49d7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cmd/helm-migrate-values/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"helm-migrate-values/internal"
"github.com/octopusdeploylabs/helm-migrate-values/internal"
"helm.sh/helm/v3/pkg/action"
"helm.sh/helm/v3/pkg/cli"
"log"
Expand Down
4 changes: 2 additions & 2 deletions cmd/helm-migrate-values/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ package main

import (
"fmt"
"github.com/octopusdeploylabs/helm-migrate-values/internal"
"github.com/octopusdeploylabs/helm-migrate-values/pkg"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"gopkg.in/yaml.v2"
"helm-migrate-values/internal"
"helm-migrate-values/pkg"
"helm.sh/helm/v3/pkg/action"
"helm.sh/helm/v3/pkg/cli"
"io"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module helm-migrate-values
module github.com/octopusdeploylabs/helm-migrate-values

go 1.23.0

Expand Down
2 changes: 1 addition & 1 deletion pkg/integration_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package pkg

import (
"github.com/octopusdeploylabs/helm-migrate-values/internal"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"helm-migrate-values/internal"
"helm.sh/helm/v3/pkg/action"
"helm.sh/helm/v3/pkg/chart/loader"
"helm.sh/helm/v3/pkg/release"
Expand Down
2 changes: 1 addition & 1 deletion pkg/migrator.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"bytes"
"fmt"
"github.com/Masterminds/sprig/v3"
"github.com/octopusdeploylabs/helm-migrate-values/internal"
"gopkg.in/yaml.v2"
"helm-migrate-values/internal"
"os"
"slices"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion pkg/migrator_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package pkg

import (
"github.com/octopusdeploylabs/helm-migrate-values/internal"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"helm-migrate-values/internal"
"testing"
)

Expand Down

0 comments on commit b4a49d7

Please sign in to comment.