From b746d8427c4627d5eb2d1b1dca11e747786eaef5 Mon Sep 17 00:00:00 2001 From: JT <547158+jntrnr@users.noreply.github.com> Date: Wed, 28 Sep 2022 07:42:25 +1300 Subject: [PATCH] Revert to released syntax for release-pkg --- .github/workflows/release-pkg.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-pkg.nu b/.github/workflows/release-pkg.nu index 5911b9b558..7491644e25 100755 --- a/.github/workflows/release-pkg.nu +++ b/.github/workflows/release-pkg.nu @@ -76,9 +76,9 @@ cp -v README.release.txt $'($dist)/README.txt' $'(char nl)Check binary release version detail:'; hr-line let ver = if $os == 'windows-latest' { - (do -i { ./output/nu.exe -c 'version' }) | str join + (do -i { ./output/nu.exe -c 'version' }) | str collect } else { - (do -i { ./output/nu -c 'version' }) | str join + (do -i { ./output/nu -c 'version' }) | str collect } if ($ver | str trim | is-empty) { $'(ansi r)Incompatible nu binary...(ansi reset)'