From 7c95b156ce5eb335544ed2e90550cb16f7f26d50 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Wed, 15 Mar 2017 23:59:21 -0400 Subject: [PATCH] fix syntax error --- bin/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compile b/bin/compile index ce12c55d..1692b935 100755 --- a/bin/compile +++ b/bin/compile @@ -159,7 +159,7 @@ source $BIN_DIR/steps/python source $BIN_DIR/steps/setuptools # If no requirements.txt file given, assume `setup.py develop` is intended. -if [ ! -f requirements.txt ] && [! -f Pipfile ]; then +if [ ! -f requirements.txt ] && [ ! -f Pipfile ]; then echo "-e ." > requirements.txt fi -- GitLab