52 lines
1.4 KiB
Bash
Executable File
52 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2017 The Kubernetes Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# This script will verify that the specified script files are valid, meaing:
|
|
# - they have "set -o errexit" turned on at some point
|
|
#
|
|
# Usage: verify-errexit.sh [ dir | file ... ]
|
|
# default args is the root of our source tree
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
REPO_ROOT=$(dirname "${BASH_SOURCE}")/..
|
|
|
|
if [ "$*" != "" ]; then
|
|
args="$*"
|
|
else
|
|
args=$(ls "$REPO_ROOT" | grep -v vendor | grep -v glide)
|
|
fi
|
|
|
|
# Gather the list of files that appear to be shell scripts.
|
|
# Meaning they have some form of "#!...sh" as a line in them.
|
|
shFiles=$(grep -rl '^#!.*sh$' $args)
|
|
|
|
tmp=/tmp/out$RANDOM
|
|
for file in ${shFiles}; do
|
|
grep "set -o errexit" $file > /dev/null 2>&1 && continue
|
|
grep "set -[a-z]*e" $file > /dev/null 2>&1 && continue
|
|
|
|
echo $file: appears to be missing \"set -o errexit\" | tee -a $tmp
|
|
done
|
|
|
|
rc="0"
|
|
if [ -e "$tmp" ]; then
|
|
rc="1"
|
|
fi
|
|
rm -f $tmp
|
|
exit $rc
|