From 3cf9093b972102586ac68db8eba97c4deec0dedc Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Wed, 27 Sep 2023 09:33:20 +0000 Subject: [PATCH] Preserve newlines. --- .github/workflows/autodocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autodocs.yml b/.github/workflows/autodocs.yml index 4520dd3c..a0c1b90a 100644 --- a/.github/workflows/autodocs.yml +++ b/.github/workflows/autodocs.yml @@ -19,5 +19,5 @@ jobs: run: | echo text-generation-launcher --help output=$(text-generation-launcher --help) - { echo '```'; echo $output; echo '```'; } > launcher_test.md + { echo '```'; echo "$output"; echo '```'; } > launcher_test.md diff launcher_test.md docs/source/basic_tutorials/launcher.md