From 8e8824c74a0b7b3dca211f616c8c57cc09f00656 Mon Sep 17 00:00:00 2001 From: Tom Jack Date: Fri, 27 Sep 2019 08:43:57 -0500 Subject: [PATCH] Always run setup_repos.sh, never setup_dev_switch.sh, upon `make build-deps` --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b11ce6fd8..40204f5c8 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,9 @@ build-deps: export PATH="/usr/local/bin$${PATH:+:}$${PATH:-}" # Create opam dev switch locally for use with Ligo, add merlin/etc if [ -n "`opam switch show | grep -P ".+/ligo"`" ]; - then :; else scripts/setup_dev_switch.sh; + then :; else scripts/setup_switch.sh; fi + scripts/setup_repos.sh eval $$(opam config env) # Install OCaml build dependencies for Ligo scripts/install_vendors_deps.sh