From ff845ebb96397dbf59fab85f595ab4a0c07d9869 Mon Sep 17 00:00:00 2001 From: Reid Barton Date: Mon, 30 May 2016 09:46:26 -0400 Subject: [PATCH] Make tools/install-mypy exit on error. --- tools/install-mypy | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/install-mypy b/tools/install-mypy index 3fa58873de..a463a66636 100755 --- a/tools/install-mypy +++ b/tools/install-mypy @@ -1,4 +1,5 @@ #!/bin/bash +set -e # This script installs a python3 virtualenv called 'zulip-py3-venv' in zulip's parent directory. # It then installs mypy and some other dependencies into that virtualenv.