From 17f0b5cbe2a1d4dd5831c79ce43bdb6c0e5da230 Mon Sep 17 00:00:00 2001 From: Jules Villard Date: Mon, 15 Jun 2015 12:09:51 -0100 Subject: [PATCH] add missing opam step in macos source install Summary: @public The "eval `opam config env`" step was missing from the macos instructions. See https://github.com/facebook/infer/issues/26 Test Plan: No functional change --- INSTALL.md | 1 + 1 file changed, 1 insertion(+) diff --git a/INSTALL.md b/INSTALL.md index eefc76176..764aff9a7 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -48,6 +48,7 @@ Install the OCaml dependencies: ```bash opam init --comp=4.01.0 # (answer 'y' to the question) +eval `opam config env` opam install sawja.1.5 atdgen.1.5.0 javalib.2.3 extlib.1.5.4 ```