5 lines
117 B
Bash
Executable file
5 lines
117 B
Bash
Executable file
#!/bin/bash
|
|
if [ `basename $PWD` == 'tools' ]; then
|
|
cd ..
|
|
fi
|
|
pyflakes weboob scripts/* | grep -v __init__.py
|