generate_feature_graphic.sh: remove redundant "|| exit 1"

This commit is contained in:
FC (Fay) Stegerman
2023-11-14 22:50:08 +00:00
committed by GitHub
parent d4a9197e60
commit 9c99b9d0ad
@@ -4,7 +4,7 @@ set -euo pipefail
script_location="$(dirname "$(readlink -f "$0")")"
for lang in "$script_location/../../fastlane/metadata/android/"*; do
pushd "$lang" || exit 1
pushd "$lang"
# Place temporary copy for editing if needed
cp "$script_location/featureGraphic.svg" featureGraphic.svg
if grep -q — title.txt; then
@@ -43,5 +43,5 @@ for lang in "$script_location/../../fastlane/metadata/android/"*; do
mat2 --inplace images/featureGraphic.png
# Remove temporary .svg
rm featureGraphic.svg
popd || exit 1
popd
done