Skip to content

Commit

Permalink
Merge pull request #2 from aokabi/fix
Browse files Browse the repository at this point in the history
fix path
  • Loading branch information
aokabi committed Nov 5, 2023
2 parents 235a088 + ec3b5a5 commit 3f4e34a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 34 deletions.
32 changes: 0 additions & 32 deletions .circleci/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion cmd/octillery/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ func (cmd *ConsoleCommand) Execute(args []string) error {
}

func (cmd *InstallCommand) lookupOctillery() ([]string, error) {
libraryPath := filepath.Join("go.knocknote.io", "octillery")
libraryPath := filepath.Join("github.com/aokabi", "octillery")
installPaths := []string{}
cwd, err := os.Getwd()
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion transposer/inspector.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var (

func importDatabaseSQLPackagePatterns() []*regexp.Regexp {
patterns := []*regexp.Regexp{}
basePath := filepath.Join("go.knocknote.io", "octillery.*")
basePath := filepath.Join("github.com/aokabi", "octillery.*")
for _, path := range []string{
"algorithm",
"connection",
Expand Down

0 comments on commit 3f4e34a

Please sign in to comment.