From c520a729722af9c562feed7b19197800f097e96f Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Thu, 2 Aug 2018 09:23:02 +0200 Subject: [PATCH] Remove duplicate --yes from opam calls These --yes might have been intended for opam list, but opam list doesn't ask for confirmation so we can just remove it. Signed-off-by: Rudi Grinberg --- .travis-ci.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis-ci.sh b/.travis-ci.sh index 5993ad21..169397fd 100644 --- a/.travis-ci.sh +++ b/.travis-ci.sh @@ -48,8 +48,8 @@ case "$TARGET" in eval $(opam config env) opam install ocamlfind utop ppxlib reason odoc menhir ocaml-migrate-parsetree js_of_ocaml-ppx js_of_ocaml-compiler --yes opam remove --yes dune jbuilder \ - `opam list --depends-on jbuilder --installed --short` --yes \ - `opam list --depends-on dune --installed --short` --yes + `opam list --depends-on jbuilder --installed --short` \ + `opam list --depends-on dune --installed --short` if opam info dune &> /dev/null; then opam remove dune `opam list --depends-on dune --installed --short` --yes fi