Skip to content

Commit 691b666

Browse files
authored
Update release script to nu_plugin_formats (nushell#384)
Also no need to sleep
1 parent fa5f262 commit 691b666

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

make_release/nu_release.nu

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,27 +29,32 @@ let subcrates_wave_3 = [
2929
# plugins
3030
nu_plugin_query,
3131
nu_plugin_inc,
32-
nu_plugin_gstat
32+
nu_plugin_gstat,
33+
nu_plugin_formats,
3334
]
3435

36+
# Recent versions of cargo verify the upload of your crate
37+
# So no need to `sleep` anymore.
38+
3539
for subcrate in $subcrates_wave_1 {
3640
cd $subcrate
3741
cargo publish
38-
sleep 1min
42+
# sleep 1min
3943
cd ..
4044
}
4145

4246
for subcrate in $subcrates_wave_2 {
4347
cd $subcrate
48+
# due to build.rs in `nu-command`
4449
cargo publish --no-verify
45-
sleep 1min
50+
# sleep 1min
4651
cd ..
4752
}
4853

4954
for subcrate in $subcrates_wave_3 {
5055
cd $subcrate
5156
cargo publish
52-
sleep 1min
57+
# sleep 1min
5358
cd ..
5459
}
5560

0 commit comments

Comments
 (0)