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"` for ELM in `find src -name "*.elm"`
do do
echo "Compiling $ELM" echo "Compiling $ELM"
elm make $ELM --output /dev/null elm make $ELM --output /dev/null --yes
rc=$? rc=$?
if [[ $rc != 0 ]] if [[ $rc != 0 ]]
then then