mirror of
https://github.com/pret/pokeruby.git
synced 2026-08-09 19:07:50 -05: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
|