Dedent check_licenses.sh continue

This commit is contained in:
mars 2022-11-26 22:07:27 -07:00
parent 734ad8d630
commit 07b9a922ba
1 changed files with 2 additions and 5 deletions

View File

@ -13,14 +13,11 @@ dir="$(pwd | sed 's/\//\n/g' | tail -n 1)"
for toml in $(find "$PWD" -name "Cargo.toml"); do
printf "Project: %s\n" "$(tomcat package.name "$toml")"
set +e # disable error propogation to catch tomcat exit code
toml_lic="$(tomcat package.license "$toml")"
if ! [ "$?" = "0" ]; then
if ! [ "$(toml_lic="$(tomcat package.license "$toml" && printf "%s\n" "$?")")" = "0" ]; then
printf "%s: Missing license information\n" "$(printf "%s\n" "$toml" |\
sed "s/^.\+$dir\///g")"
continue
continue
fi
set -e # re-enable error propogation for the rest of the script
for file in $(find "$(printf "%s\n" "$toml" |\
sed 's/Cargo\.toml/src/g')" -name "*.rs")