summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJT <547158+jntrnr@users.noreply.github.com>2022-09-28 07:42:25 +1300
committerGitHub <noreply@github.com>2022-09-28 07:42:25 +1300
commitb746d8427c4627d5eb2d1b1dca11e747786eaef5 (patch)
tree3e894f7e41de7343a44807721a2d9e22df235997
parent3beaca0d06840e494206aac0aa215c0166674f8b (diff)
Revert to released syntax for release-pkg0.69.0
-rwxr-xr-x.github/workflows/release-pkg.nu4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release-pkg.nu b/.github/workflows/release-pkg.nu
index 5911b9b55..7491644e2 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)'