From 1c9c0fdb881c7020cda12935740f46bc89b3ee4c Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Thu, 7 Mar 2024 12:51:30 -0700 Subject: [PATCH] Release workflow: fix typos in variable reference --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 253cfc587..8d2841a73 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -163,8 +163,8 @@ jobs: ./bootstrap ./configure --disable-japanese --disable-net make distdir - n_name=`find . -maxdepth 1 -type d -name "${{ steps.store.config.outputs.name }}"'-*' -print | wc -l` - name=`find . -maxdepth 1 -type d -name "${{ steps.store.config.outputs.name }}"'-*' -print` + n_name=`find . -maxdepth 1 -type d -name "${{ steps.store_config.outputs.name }}"'-*' -print | wc -l` + name=`find . -maxdepth 1 -type d -name "${{ steps.store_config.outputs.name }}"'-*' -print` test x"$n_name" != x1 || exit 1 test x"$name" == x"$out" || mv "$name" "$out" tar -cBf - "$out" | gzip -c - >"$out".tar.gz -- 2.11.0