fix small issue with init.sh script

This commit is contained in:
Rasmus Andersson 2019-08-29 10:54:26 -07:00
parent 43fff858ff
commit d6f37cbc30

View file

@ -339,7 +339,7 @@ else
has_newer() { has_newer() {
DIR=$1 DIR=$1
REF_FILE=$2 REF_FILE=$2
for f in $(find "$DIR" -type f -name '*.pyx' -newer "$REF_FILE" -print -quit); do for f in $(find "$DIR" -type f -newer "$REF_FILE" -print -quit); do
return 0 return 0
done done
return 1 return 1