mirror of
https://github.com/nushell/nushell
synced 2025-01-13 21:55:07 +00:00
build script for mac and linux (#4732)
This commit is contained in:
parent
5b3cc73ac6
commit
cd721fc363
1 changed files with 32 additions and 0 deletions
32
build-all-maclin.sh
Executable file
32
build-all-maclin.sh
Executable file
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
|
||||
echo "-------------------------------------------------------------------"
|
||||
echo "Building nushell (nu.exe) with --features=extra and all the plugins"
|
||||
echo "-------------------------------------------------------------------"
|
||||
echo ""
|
||||
|
||||
echo "Building nushell.exe"
|
||||
cargo build --features=extra
|
||||
echo ""
|
||||
|
||||
cd crates/nu_plugin_example
|
||||
echo "Building nu_plugin_example.exe"
|
||||
cargo build
|
||||
echo ""
|
||||
|
||||
cd ../../crates/nu_plugin_gstat
|
||||
echo "Building nu_plugin_gstat.exe"
|
||||
cargo build
|
||||
echo ""
|
||||
|
||||
cd ../../crates/nu_plugin_inc
|
||||
echo "Building nu_plugin_inc.exe"
|
||||
cargo build
|
||||
echo ""
|
||||
|
||||
cd ../../crates/nu_plugin_query
|
||||
echo "Building nu_plugin_query.exe"
|
||||
cargo build
|
||||
echo ""
|
||||
|
||||
cd ../..
|
Loading…
Reference in a new issue