Fix so shell script adheres to posix standards. (#4439)

pull/4447/head
Magnus Ihse Bursie 2016-11-18 06:59:53 +01:00 committed by Paulus Schoutsen
parent af77341494
commit 82ed7b6b08
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
# NOTE: all testing is now driven through tox. The tox command below
# performs roughly what this test did in the past.
if [ "$1" == "--changed" ]; then
export files=`git diff upstream/dev --name-only | grep -v requirements_all.txt`
if [ "$1" = "--changed" ]; then
export files="`git diff upstream/dev --name-only | grep -v requirements_all.txt`"
echo "================================================="
echo "FILES CHANGED (git diff upstream/dev --name-only)"
echo "================================================="