2022-03-04 23:17:33 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2022-03-05 06:10:33 +01:00
|
|
|
echo "---------------------------------------------------------------"
|
|
|
|
echo "Building nushell (nu) with --features=extra and all the plugins"
|
|
|
|
echo "---------------------------------------------------------------"
|
2022-03-04 23:17:33 +01:00
|
|
|
echo ""
|
|
|
|
|
2022-03-05 12:41:28 +01:00
|
|
|
NU_PLUGINS=(
|
|
|
|
'nu_plugin_example'
|
|
|
|
'nu_plugin_gstat'
|
|
|
|
'nu_plugin_inc'
|
|
|
|
'nu_plugin_query'
|
2022-08-11 16:40:35 +02:00
|
|
|
'nu_plugin_custom_values'
|
2022-03-05 12:41:28 +01:00
|
|
|
)
|
|
|
|
|
2022-03-05 06:10:33 +01:00
|
|
|
echo "Building nushell"
|
2022-03-04 23:17:33 +01:00
|
|
|
cargo build --features=extra
|
2022-03-05 12:41:28 +01:00
|
|
|
for plugin in "${NU_PLUGINS[@]}"
|
|
|
|
do
|
|
|
|
echo '' && cd crates/$plugin
|
|
|
|
echo "Building $plugin..."
|
|
|
|
echo "-----------------------------"
|
|
|
|
cargo build && cd ../..
|
|
|
|
done
|