mirror of
https://github.com/tfausak/witch.git
synced 2024-11-22 14:58:13 +03:00
10 lines
167 B
Bash
Executable File
10 lines
167 B
Bash
Executable File
#! /usr/bin/env sh
|
|
set -o errexit -o xtrace
|
|
|
|
cabal update
|
|
|
|
if ! test -f cabal.project.local
|
|
then
|
|
cabal configure --enable-tests --jobs --test-show-details direct
|
|
fi
|