mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 20:32:15 +00:00
10 lines
220 B
Bash
Executable File
10 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Rebuild the project and run the hspec based unit tests. This could have been
|
|
# achieved by 'cabal test' but then the output would not be as colorful.
|
|
#
|
|
set -eu
|
|
|
|
cabal -v0 build
|
|
./dist/build/spec/spec $@
|