1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 22:57:46 +00:00

Port nu_release to e-q (#149)

This commit is contained in:
JT 2022-02-17 07:29:36 -05:00 committed by GitHub
parent 727fd088ec
commit 20c1e2f2ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,18 @@
cd crates
let first-wave = [nu-system, nu-term-grid, nu-path, nu-ansi-term, nu-pretty-hex, nu-json, nu-protocol, nu-engine, nu-plugin, nu-table, nu-color-config,
nu-parser, nu-test-support, nu-cli]
echo $first-wave | each { |cratedir| enter $cratedir; cargo publish; exit; sleep 1min }
let second-wave = [nu-command]
echo $second-wave | each { |cratedir| enter $cratedir; cargo publish --no-verify; exit; sleep 1min }
ls nu_plugin_* | each { |plugin| enter $plugin.name; cargo publish; exit }
sleep 1min
cd ..
cargo publish