Download elm dependencies without prompting user. (#118)

This commit is contained in:
Matthias Baer 2018-05-21 10:23:01 +02:00 committed by William Cheng
parent d9d6530161
commit f22224574b

View File

@ -4,7 +4,7 @@
for ELM in `find src -name "*.elm"`
do
echo "Compiling $ELM"
elm make $ELM --output /dev/null
elm make $ELM --output /dev/null --yes
rc=$?
if [[ $rc != 0 ]]
then