mirror of
https://github.com/nushell/nushell
synced 2024-11-10 23:24:14 +00:00
24 lines
594 B
Bash
Executable file
24 lines
594 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "---------------------------------------------------------------"
|
|
echo "Building nushell (nu) with --features=extra and all the plugins"
|
|
echo "---------------------------------------------------------------"
|
|
echo ""
|
|
|
|
NU_PLUGINS=(
|
|
'nu_plugin_example'
|
|
'nu_plugin_gstat'
|
|
'nu_plugin_inc'
|
|
'nu_plugin_query'
|
|
'nu_plugin_custom_values'
|
|
)
|
|
|
|
echo "Building nushell"
|
|
cargo build --features=extra
|
|
for plugin in "${NU_PLUGINS[@]}"
|
|
do
|
|
echo '' && cd crates/$plugin
|
|
echo "Building $plugin..."
|
|
echo "-----------------------------"
|
|
cargo build && cd ../..
|
|
done
|