mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
8 lines
164 B
Bash
Executable file
8 lines
164 B
Bash
Executable file
#!/bin/bash
|
|
|
|
stack new "$1"
|
|
cd "$1"
|
|
echo -e "cradle:\n stack:" >> hie.yaml
|
|
sed -i 's/^resolver: .*$/resolver: lts-15.0/' stack.yaml
|
|
stack setup
|
|
stack build --fast
|