8 lines
248 B
Bash
Executable file
8 lines
248 B
Bash
Executable file
#!/bin/bash
|
|
if [ `basename $PWD` == 'tools' ]; then
|
|
cd ..
|
|
fi
|
|
|
|
# grep will return 0 only if it founds something, but our script
|
|
# wants to return 0 when it founds nothing!
|
|
pyflakes weboob scripts/* | grep -v redefinition && exit 1 || exit 0
|