From 9fd8b29833fa5f87ebdb6c4786f6489e79f1c297 Mon Sep 17 00:00:00 2001 From: Serene-Arc Date: Fri, 11 Jun 2021 18:36:40 +1000 Subject: [PATCH] Add another logging message to script --- scripts/extract_failed_ids.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/extract_failed_ids.sh b/scripts/extract_failed_ids.sh index 89f1896..104c7af 100755 --- a/scripts/extract_failed_ids.sh +++ b/scripts/extract_failed_ids.sh @@ -19,4 +19,5 @@ fi grep 'Failed to download resource' "$file" | awk '{ print $15 }' ; grep 'failed to download submission' "$file" | awk '{ print $14 }' | rev | cut -c 2- | rev ; grep 'Failed to write file' "$file" | awk '{ print $16 }' | rev | cut -c 2- | rev ; + grep 'skipped due to disabled module' "$file" | awk '{ print $9 }' ; } >>"$output"