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.
nu_plugin_formats
1 parent fa5f262 commit 691b666Copy full SHA for 691b666
make_release/nu_release.nu
@@ -29,27 +29,32 @@ let subcrates_wave_3 = [
29
# plugins
30
nu_plugin_query,
31
nu_plugin_inc,
32
- nu_plugin_gstat
+ nu_plugin_gstat,
33
+ nu_plugin_formats,
34
]
35
36
+# Recent versions of cargo verify the upload of your crate
37
+# So no need to `sleep` anymore.
38
+
39
for subcrate in $subcrates_wave_1 {
40
cd $subcrate
41
cargo publish
- sleep 1min
42
+ # sleep 1min
43
cd ..
44
}
45
46
for subcrate in $subcrates_wave_2 {
47
48
+ # due to build.rs in `nu-command`
49
cargo publish --no-verify
50
51
52
53
54
for subcrate in $subcrates_wave_3 {
55
56
57
58
59
60
0 commit comments