From 911af80b5b691bc56a4952e3b327fbb66662e35b Mon Sep 17 00:00:00 2001 From: Charlie Wheeler-Robinson Date: Mon, 15 Apr 2024 12:02:17 -0400 Subject: [PATCH] add check for existing data before collecting Signed-off-by: Charlie Wheeler-Robinson --- cmd/e2e.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/cmd/e2e.sh b/cmd/e2e.sh index 1251d3d..f5bb396 100755 --- a/cmd/e2e.sh +++ b/cmd/e2e.sh @@ -269,9 +269,14 @@ EOF audit_container > $DATADIR/repo_audit if [ ! -z "$LOCAL_KUBECONFIG" ]; then - echo "Running Collection" - verify_env - collect_data + if [ -z "$( find $OUTPUTDIR/* -prune -type f 2>/dev/null )" ]; then + echo "Running Collection" + verify_env + collect_data + else + echo "Cannot run data collection when $OUTPUTDIR contains files." + exit 1 + fi else echo "Skipping data collection" fi