blob: b628abd97233b462daaab70d53614d744a441baf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
if [ -w . ]; then
sandbox=./.cabal-sandbox
sandbox_config=./cabal.sandbox.config
else
sandbox=$HOME/cabal-sandbox
sandbox_config=$HOME/cabal.sandbox.config
fi
source_dir="$(mktemp --tmpdir -d "cabal-helper.sdistXXXXXXXXX")"
build_dir="$(mktemp --tmpdir -d "cabal-helper.distXXXXXXXXX")"
|