Skip to content

Commit

Permalink
Minor CLI Fix for Formatting Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Alder Whiteford authored and Alder Whiteford committed Mar 6, 2024
1 parent 3f4a802 commit b70a43f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cli/commands/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
)

var (
ROOT_DIR, _ = utils.GetRootDir()
FRONTEND_DIR = filepath.Join(ROOT_DIR, "/frontend")
BACKEND_DIR = filepath.Join(ROOT_DIR, "/backend/src")
CONFIG, _ = config.GetConfiguration(filepath.Join(ROOT_DIR, "/config"), false)
MIGRATION_FILE = filepath.Join(BACKEND_DIR, "/migrations/data.sql")
ROOT_DIR, _ = utils.GetRootDir()

Check failure on line 11 in cli/commands/config.go

View workflow job for this annotation

GitHub Actions / Lint

File is not `goimports`-ed (goimports)

Check failure on line 11 in cli/commands/config.go

View workflow job for this annotation

GitHub Actions / Lint

File is not `goimports`-ed (goimports)
FRONTEND_DIR = filepath.Join(ROOT_DIR, "/frontend")
BACKEND_DIR = filepath.Join(ROOT_DIR, "/backend/")
CONFIG, _ = config.GetConfiguration(filepath.Join(ROOT_DIR, "/config"), false)
MIGRATION_FILE = filepath.Join(BACKEND_DIR, "/migrations/data.sql")
)

0 comments on commit b70a43f

Please sign in to comment.