Kwang Yul Seo
Kwang Yul Seo

Reputation: 791

How to remove old build plans installed by Haskell stack?

How can I remove old build plans (GHC compiler and packages) installed by the stack tool?

Upvotes: 7

Views: 1123

Answers (1)

ErikR
ErikR

Reputation: 52039

I would poke around ~/.stack and delete whatever files you don't want anymore:

  • compiled libraries for a resolver in ~/.stack/snapshots/...
  • compiler toolchains in ~/.stack/programs/...
  • build plan yaml files in ~/.stack/build-plan/...

Upvotes: 9

Related Questions