9 lines
84 B
Bash
9 lines
84 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
rm cabal.sandbox.config
|
|
rm -r .cabal-sandbox
|
|
|
|
cabal sandbox init
|