mirror of
https://github.com/hkalexling/Mango.git
synced 2025-08-02 19:05:32 -04:00
6 lines
184 B
Bash
Executable File
6 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ ! -z "$(grep '.\{80\}' --exclude-dir=lib --include="*.cr" -nr --color=always . | tee /dev/tty)" ] \
|
|
&& echo "The above lines exceed the 80 characters limit" \
|
|
|| exit 0
|