mirror of
https://github.com/nushell/nushell.git
synced 2025-08-19 08:21:30 +02:00
Update build & install sh scripts, add install script for windows (#4736)
* Update build & install sh scripts, add install script for windows * Rename install scripts [ci skip]
This commit is contained in:
28
install-all.sh
Normal file
28
install-all.sh
Normal file
@@ -0,0 +1,28 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Usage: Just run `sh install-all.sh` in nushell root directory
|
||||
|
||||
echo "-----------------------------------------------------------------"
|
||||
echo "Installing nushell (nu) with --features=extra and all the plugins"
|
||||
echo "-----------------------------------------------------------------"
|
||||
echo ""
|
||||
|
||||
echo "Install nushell from local..."
|
||||
echo "----------------------------------------------"
|
||||
cargo install --path . --features=extra
|
||||
|
||||
NU_PLUGINS=(
|
||||
'nu_plugin_inc'
|
||||
'nu_plugin_gstat'
|
||||
'nu_plugin_query'
|
||||
'nu_plugin_example'
|
||||
)
|
||||
|
||||
for plugin in "${NU_PLUGINS[@]}"
|
||||
do
|
||||
echo ''
|
||||
echo "----------------------------------------------"
|
||||
echo "Install plugin $plugin from local..."
|
||||
echo "----------------------------------------------"
|
||||
cd crates/$plugin && cargo install --path . && cd ../../
|
||||
done
|
Reference in New Issue
Block a user