6c45569ecd
This patchset adds developer overview documentation for providing a high-level introduction to Deckhand, including its architecture, modules, test utilities, Helm utilities, and other errata. This work is based off this Drydock patchset: https://review.openstack.org/#/c/571298/ Change-Id: Ic3382d4e04edf02a65184651d272fe9cd1db56a4
16 lines
306 B
Bash
Executable File
16 lines
306 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -xe
|
|
|
|
RES=$(find . \
|
|
-not -path "*/\.*" \
|
|
-not -path "*/*.egg-info/*" \
|
|
-not -path "*/releasenotes/build/*" \
|
|
-not -path "*/doc/build/*" \
|
|
-not -path "*/doc/source/images/*" \
|
|
-not -name "*.tgz" \
|
|
-type f -exec egrep -l " +$" {} \;)
|
|
|
|
if [[ -n $RES ]]; then
|
|
exit 1
|
|
fi
|