mirror of
https://github.com/cheat/cheat.git
synced 2024-11-25 15:31:36 +01:00
10 lines
174 B
Bash
10 lines
174 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Resolve the app root
|
||
|
SCRIPT=`realpath $0`
|
||
|
SCRIPTPATH=`dirname $SCRIPT`
|
||
|
APPROOT=`realpath "$SCRIPTPATH/.."`
|
||
|
|
||
|
flake8 $APPROOT/bin/cheat
|
||
|
flake8 $APPROOT/cheat/*.py
|