From 8271b2d80b9dc414983a897735edbddaafb35a99 Mon Sep 17 00:00:00 2001 From: Silvano Cerza Date: Wed, 30 Oct 2024 15:34:53 +0100 Subject: [PATCH] Fix readme_sync.yml unstable version check --- .github/workflows/readme_sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/readme_sync.yml b/.github/workflows/readme_sync.yml index 4a13505c0..b842c4fa8 100644 --- a/.github/workflows/readme_sync.yml +++ b/.github/workflows/readme_sync.yml @@ -52,7 +52,7 @@ jobs: # stable docs, for the time being we're ok with that. # `main` branch docs will be handled correctly too and get pushed to an # unstable documentation. - IS_UNSTABLE=$(hatch version | grep -v -q "0-rc") + IS_UNSTABLE="$(hatch version | grep -v -q '0-rc')" if [ "$IS_UNSTABLE" ]; then VERSION="$VERSION-unstable" fi