Skip to content

Commit

Permalink
fix: make installable using go install
Browse files Browse the repository at this point in the history
  • Loading branch information
NoUseFreak committed Jan 5, 2024
1 parent 22af677 commit b7479e4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module regclean
module github.com/stenic/regclean

go 1.20

Expand Down
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"io"
"os"
"path/filepath"
"regclean/pkg/auth"
"regclean/pkg/helpers"
"regclean/pkg/ui"
"regclean/pkg/utils"
"github.com/stenic/regclean/pkg/auth"
"github.com/stenic/regclean/pkg/helpers"
"github.com/stenic/regclean/pkg/ui"
"github.com/stenic/regclean/pkg/utils"
"strings"
"time"

Expand Down
2 changes: 1 addition & 1 deletion pkg/helpers/clusterHelper.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package helpers
import (
"context"
"encoding/json"
"regclean/pkg/utils"
"github.com/stenic/regclean/pkg/utils"
"strings"

"github.com/sirupsen/logrus"
Expand Down
2 changes: 1 addition & 1 deletion pkg/helpers/registryHelper.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"io"
"net/http"
"net/url"
"regclean/pkg/caching"
"github.com/stenic/regclean/pkg/caching"
"strings"
"time"

Expand Down

0 comments on commit b7479e4

Please sign in to comment.