mirror of
https://github.com/nushell/nushell.git
synced 2024-11-07 17:14:23 +01:00
efdfeac55e
Following up on #7180 with some feature cleanup: - Move the `database` feature from `plugin` to `default` - Rename the `database` feature to `sqlite` - Remove `--features=extra` from a lot of scripts etc. - No need to specify this, the `extra` feature is now the same as the default feature set - Remove the now-redundant 2nd Ubuntu test run
36 lines
767 B
Batchfile
36 lines
767 B
Batchfile
@echo off
|
|
@echo -------------------------------------------------------------------
|
|
@echo Building nushell (nu.exe) with dataframes and all the plugins
|
|
@echo -------------------------------------------------------------------
|
|
@echo.
|
|
|
|
echo Building nushell.exe
|
|
cargo build cargo build --features=dataframe
|
|
@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 ..\..\crates\nu_plugin_custom_values
|
|
echo Building nu_plugin_custom_values.exe
|
|
cargo build
|
|
@echo.
|
|
|
|
@cd ..\.. |