mirror of
https://github.com/nushell/nushell.git
synced 2024-11-07 17:14:23 +01:00
23 lines
576 B
Plaintext
23 lines
576 B
Plaintext
|
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,
|
||
|
]
|
||
|
|
||
|
for plugin in $plugins {
|
||
|
$'(char nl)Building ($plugin)'
|
||
|
'----------------------------'
|
||
|
cd $'crates/($plugin)'
|
||
|
cargo build
|
||
|
ignore
|
||
|
}
|