Skip to content

Commit

Permalink
fix: supabase/.temp not being cleaned up
Browse files Browse the repository at this point in the history
  • Loading branch information
soedirgo committed Oct 15, 2021
1 parent e951f3b commit d24e299
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/start/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,10 +262,10 @@ func run(p *tea.Program) error {

initializedDbs := []string{currBranch}

_ = os.RemoveAll("supabase/.temp")
if err := os.Mkdir("supabase/.temp", 0755); err != nil {
return err
}
defer os.RemoveAll("supabase/.temp")

p.Send(utils.StatusMsg("Pulling images..."))

Expand Down

0 comments on commit d24e299

Please sign in to comment.