Commit 7a1aaef0 authored by Alex Chan's avatar Alex Chan

Fix bash syntax error

parent f8cb9c65
......@@ -5,7 +5,9 @@ set -o xtrace
# Create a temporary directory to install the virtualenv in
VENV_DIR="$(mktemp -d)"
function cleanup { rm -rf "$VENV_DIR" }
function cleanup() {
rm -rf "$VENV_DIR"
}
trap cleanup EXIT
# Create a virtualenv that doesn't have pip or setuptools installed
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment