mirror of
https://github.com/nushell/nushell
synced 2024-11-10 15:14:14 +00:00
23 lines
605 B
Text
23 lines
605 B
Text
echo '-------------------------------------------------------------------'
|
|
echo 'Building nushell (nu) with --features=extra and all the plugins'
|
|
echo '-------------------------------------------------------------------'
|
|
|
|
echo $'(char nl)Building nushell'
|
|
echo '----------------------------'
|
|
cargo build --features=extra
|
|
|
|
let plugins = [
|
|
nu_plugin_inc,
|
|
nu_plugin_gstat,
|
|
nu_plugin_query,
|
|
nu_plugin_example,
|
|
nu_plugin_custom_values,
|
|
]
|
|
|
|
for plugin in $plugins {
|
|
$'(char nl)Building ($plugin)'
|
|
'----------------------------'
|
|
cd $'crates/($plugin)'
|
|
cargo build
|
|
ignore
|
|
}
|