mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
9 lines
126 B
Bash
Executable File
9 lines
126 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Rebuild the project and run Main.main with all arguments passed to this
|
|
# script.
|
|
#
|
|
set -eu
|
|
|
|
cabal -v0 run $@
|