Skip to content

Commit

Permalink
fix: remove cyclic import
Browse files Browse the repository at this point in the history
  • Loading branch information
awalias authored and soedirgo committed Mar 31, 2022
1 parent 6ca3529 commit 33f4e0c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/utils/misc.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import (
"time"

"github.com/adrg/xdg"
"github.com/supabase/cli/internal/utils"
)

// Update initial schemas in internal/utils/templates/initial_schemas when
Expand Down Expand Up @@ -179,7 +178,7 @@ func AssertIsLinked() error {
}

func InstallOrUpgradeDeno() error {
if err := utils.MkdirIfNotExist(xdg.Home + "/.supabase"); err != nil {
if err := MkdirIfNotExist(xdg.Home + "/.supabase"); err != nil {
return err
}
denoPath := xdg.Home + "/.supabase/deno"
Expand Down

0 comments on commit 33f4e0c

Please sign in to comment.