mirror of
https://github.com/pret/pokeruby.git
synced 2025-01-31 09:42:55 +00:00
7 lines
91 B
Bash
Executable File
7 lines
91 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if grep -Enr "\s+\$" src; then
|
|
# Trailing whitespace detected
|
|
exit 1
|
|
fi
|