Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
fix SST_NO_CLEANUP flag behaviour (#1243)
Browse files Browse the repository at this point in the history
  • Loading branch information
Probotect0r authored Oct 11, 2024
1 parent 0080c0d commit e87ee87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ func (p *Project) Provider(name string) (provider.Provider, bool) {
}

func (p *Project) Cleanup() error {
if !flag.SST_NO_CLEANUP {
if flag.SST_NO_CLEANUP {
return nil
}
return os.RemoveAll(
Expand Down

0 comments on commit e87ee87

Please sign in to comment.