fix small issue with init.sh script
This commit is contained in:
parent
43fff858ff
commit
d6f37cbc30
1 changed files with 1 additions and 1 deletions
2
init.sh
2
init.sh
|
|
@ -339,7 +339,7 @@ else
|
|||
has_newer() {
|
||||
DIR=$1
|
||||
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
|
||||
done
|
||||
return 1
|
||||
|
|
|
|||
Reference in a new issue