From f3ede4117f3c735739246dbe89bf57a942794513 Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Sun, 3 Nov 2024 19:53:48 -0700 Subject: [PATCH] updated all references --- README.md | 2 +- cmd/collect.go | 4 ---- tests/api_test.go | 6 +++--- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a71f0a0..77c8483 100644 --- a/README.md +++ b/README.md @@ -332,7 +332,7 @@ The `magellan` tool has a `login` subcommand that works with the [`opaal`](https export ACCESS_TOKEN=eyJhbGciOiJIUzI1NiIs... ``` -Alternatively, if you are running the davidallendj quickstart in the [deployment recipes](https://github.com/davidallendj/deployment-recipes), you can run the provided script to generate a token and set the environment variable that way. +Alternatively, if you are running the OpenCHAMI quickstart in the [deployment recipes](https://github.com/davidallendj/deployment-recipes), you can run the provided script to generate a token and set the environment variable that way. ```bash quickstart_dir=path/to/deployment/recipes/quickstart diff --git a/cmd/collect.go b/cmd/collect.go index 4e55956..d5e29c3 100644 --- a/cmd/collect.go +++ b/cmd/collect.go @@ -5,10 +5,6 @@ import ( "fmt" "os/user" - "github.com/OpenCHAMI/magellan/internal/cache/sqlite" - urlx "github.com/OpenCHAMI/magellan/internal/url" - magellan "github.com/OpenCHAMI/magellan/pkg" - "github.com/OpenCHAMI/magellan/pkg/auth" "github.com/OpenCHAMI/magellan/pkg/bmc" "github.com/OpenCHAMI/magellan/pkg/secrets" "github.com/cznic/mathutil" diff --git a/tests/api_test.go b/tests/api_test.go index 999f142..d46a312 100644 --- a/tests/api_test.go +++ b/tests/api_test.go @@ -22,9 +22,9 @@ import ( "flag" - "github.com/OpenCHAMI/magellan/internal/util" - magellan "github.com/OpenCHAMI/magellan/pkg" - "github.com/OpenCHAMI/magellan/pkg/client" + magellan "github.com/davidallendj/magellan/internal" + "github.com/davidallendj/magellan/internal/util" + "github.com/davidallendj/magellan/pkg/client" "github.com/rs/zerolog/log" )