From be064a818b07fb6536b6fa015d6b1c5ee01548ec Mon Sep 17 00:00:00 2001 From: Heavybullets8 Date: Sat, 13 Aug 2022 10:49:47 -0600 Subject: [PATCH] if app is external services, do not post process --- functions/update_apps.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/functions/update_apps.sh b/functions/update_apps.sh index 7ca830fc..20beb654 100644 --- a/functions/update_apps.sh +++ b/functions/update_apps.sh @@ -78,7 +78,6 @@ if grep -qs "^$app_name," failed.txt ; then fi fi - [[ ! -e external_services ]] && touch external_services if ! grep -qs "^$app_name," external_services ; then @@ -111,7 +110,12 @@ else echo_array return fi -after_update_actions +if grep -qs "^$app_name,true" external_services ; then + echo_array + return +else + after_update_actions +fi } export -f pre_process