From 5475ee1528cbf856c0136d6c04977c3e37d2c687 Mon Sep 17 00:00:00 2001 From: FantasyTeddy Date: Mon, 21 May 2018 09:32:06 +0200 Subject: [PATCH] Download elm dependencies without prompting user. --- samples/client/petstore/elm/elm-compile-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/client/petstore/elm/elm-compile-test b/samples/client/petstore/elm/elm-compile-test index 55507cfcad61..c2403c5fd4e3 100755 --- a/samples/client/petstore/elm/elm-compile-test +++ b/samples/client/petstore/elm/elm-compile-test @@ -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