We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3beaca0 commit b746d84Copy full SHA for b746d84
.github/workflows/release-pkg.nu
@@ -76,9 +76,9 @@ cp -v README.release.txt $'($dist)/README.txt'
76
77
$'(char nl)Check binary release version detail:'; hr-line
78
let ver = if $os == 'windows-latest' {
79
- (do -i { ./output/nu.exe -c 'version' }) | str join
+ (do -i { ./output/nu.exe -c 'version' }) | str collect
80
} else {
81
- (do -i { ./output/nu -c 'version' }) | str join
+ (do -i { ./output/nu -c 'version' }) | str collect
82
}
83
if ($ver | str trim | is-empty) {
84
$'(ansi r)Incompatible nu binary...(ansi reset)'
0 commit comments