forked from mirrors/thatmattlove-hyperglass
10 lines
No EOL
112 B
Bash
Executable file
10 lines
No EOL
112 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
LC=$(./manage.py line-count-badge)
|
|
|
|
echo $LC
|
|
|
|
if [[ ! $? == 0 ]]; then
|
|
exit 1
|
|
fi
|
|
exit 0 |