From 974cb1062a3dacdb4bf41609a4e4a1d8062863b4 Mon Sep 17 00:00:00 2001 From: JCGoran Date: Thu, 10 Oct 2024 15:07:34 +0200 Subject: [PATCH] Fix for Fedora latest (#73) --- scripts/environment_redhat.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/environment_redhat.sh b/scripts/environment_redhat.sh index 7d1be70..7f73ea3 100644 --- a/scripts/environment_redhat.sh +++ b/scripts/environment_redhat.sh @@ -4,7 +4,9 @@ # --- # This is working around GitHub Actions running commands in non-login shells # that would otherwise not have the `module` command available. +set +e source /etc/profile.d/modules.sh +set -e # --- # --- End GitHub-Actions-specific code --- # ---