if app is external services, do not post process

This commit is contained in:
Heavybullets8 2022-08-13 10:49:47 -06:00
parent d6f95fa76b
commit be064a818b

View File

@ -78,7 +78,6 @@ if grep -qs "^$app_name," failed.txt ; then
fi fi
fi fi
[[ ! -e external_services ]] && touch external_services [[ ! -e external_services ]] && touch external_services
if ! grep -qs "^$app_name," external_services ; then if ! grep -qs "^$app_name," external_services ; then
@ -111,7 +110,12 @@ else
echo_array echo_array
return return
fi fi
if grep -qs "^$app_name,true" external_services ; then
echo_array
return
else
after_update_actions after_update_actions
fi
} }
export -f pre_process export -f pre_process