mirror of
https://github.com/nushell/nushell.git
synced 2025-04-11 06:48:31 +02:00
build script for mac and linux (#4732)
This commit is contained in:
parent
5b3cc73ac6
commit
cd721fc363
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 New Issue
Block a user