From c6b1edfdfb9b7be934997aa1bd396749c37c0750 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sat, 1 Nov 2025 14:21:19 -0600 Subject: [PATCH] Correctly set APPSTREAM env var --- repo.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/repo.sh b/repo.sh index 4f0325302..e25200f15 100755 --- a/repo.sh +++ b/repo.sh @@ -3,14 +3,13 @@ set -e source `dirname "$0"`/config.sh -APPSTREAM="0" COOK_OPT="" recipes="" for arg in "${@:1}" do if [[ "$arg" == "--appstream" ]] then - APPSTREAM="1" + export APPSTREAM="1" elif [[ "$arg" == "--offline" ]] then export COOKBOOK_OFFLINE=true