From 222222378048b838dd98e41680fc05d70d5f0047 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Thu, 20 Nov 2025 18:57:38 +0100 Subject: [PATCH] doc: Remove bash -c wrapper This is not needed in combination with the outer env. --- ci/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/README.md b/ci/README.md index 9abfce14fc1..293294a559c 100644 --- a/ci/README.md +++ b/ci/README.md @@ -43,7 +43,7 @@ into the local CI. To run the test stage with a specific configuration: ``` -env -i HOME="$HOME" PATH="$PATH" USER="$USER" bash -c 'FILE_ENV="./ci/test/00_setup_env_arm.sh" ./ci/test_run_all.sh' +env -i HOME="$HOME" PATH="$PATH" USER="$USER" FILE_ENV="./ci/test/00_setup_env_arm.sh" ./ci/test_run_all.sh ``` ## Configurations @@ -62,7 +62,7 @@ It is also possible to force a specific configuration without modifying the file. For example, ``` -env -i HOME="$HOME" PATH="$PATH" USER="$USER" bash -c 'MAKEJOBS="-j1" FILE_ENV="./ci/test/00_setup_env_arm.sh" ./ci/test_run_all.sh' +env -i HOME="$HOME" PATH="$PATH" USER="$USER" MAKEJOBS="-j1" FILE_ENV="./ci/test/00_setup_env_arm.sh" ./ci/test_run_all.sh ``` The files starting with `0n` (`n` greater than 0) are the scripts that are run