mirror of https://github.com/citusdata/citus.git
19 lines
529 B
Bash
Executable File
19 lines
529 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
for f in $(git ls-tree -r HEAD --name-only); do
|
|
if [ "$f" = "${f%.out}" ] &&
|
|
[ "$f" = "${f%.data}" ] &&
|
|
[ "$f" = "${f%.png}" ] &&
|
|
[ -f "$f" ] &&
|
|
[ "$(echo "$f" | cut -d / -f1)" != "vendor" ] &&
|
|
[ "$(dirname "$f")" != "src/test/regress/output" ]
|
|
then
|
|
# Trim trailing whitespace
|
|
sed -e 's/[[:space:]]*$//' -i "./$f"
|
|
# Add final newline if not there
|
|
if [ -n "$(tail -c1 "$f")" ]; then
|
|
echo >> "$f"
|
|
fi
|
|
fi
|
|
done
|