nushell/build-all-maclin.sh

33 lines
638 B
Bash
Raw Normal View History

2022-03-04 23:17:33 +01:00
#!/bin/sh
echo "---------------------------------------------------------------"
echo "Building nushell (nu) with --features=extra and all the plugins"
echo "---------------------------------------------------------------"
2022-03-04 23:17:33 +01:00
echo ""
echo "Building nushell"
2022-03-04 23:17:33 +01:00
cargo build --features=extra
echo ""
cd crates/nu_plugin_example
echo "Building nu_plugin_example"
2022-03-04 23:17:33 +01:00
cargo build
echo ""
cd ../../crates/nu_plugin_gstat
echo "Building nu_plugin_gstat"
2022-03-04 23:17:33 +01:00
cargo build
echo ""
cd ../../crates/nu_plugin_inc
echo "Building nu_plugin_inc"
2022-03-04 23:17:33 +01:00
cargo build
echo ""
cd ../../crates/nu_plugin_query
echo "Building nu_plugin_query"
2022-03-04 23:17:33 +01:00
cargo build
echo ""
cd ../..