From 1bf43bbe13786673e0a7960fee4a38dce24e573c Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 26 May 2023 11:19:54 +0200 Subject: [PATCH] Export variables without export in env file https://github.com/alexbelgium/hassio-addons/issues/747 --- free_games_claimer/rootfs/etc/cont-init.d/99-run.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/free_games_claimer/rootfs/etc/cont-init.d/99-run.sh b/free_games_claimer/rootfs/etc/cont-init.d/99-run.sh index 8d8843440..cb5eb9415 100755 --- a/free_games_claimer/rootfs/etc/cont-init.d/99-run.sh +++ b/free_games_claimer/rootfs/etc/cont-init.d/99-run.sh @@ -24,8 +24,9 @@ fi chmod -R 777 "$CONFIG_HOME" # Export variables -# shellcheck source=/dev/null -source "$CONFIG_HOME"/config.env +set -a +/./"$CONFIG_HOME"/config.env +set +a ############## # Launch App #