mirror of
https://github.com/nushell/nushell.git
synced 2024-11-07 09:04:18 +01:00
905e3d0715
# Description Removes the old `nu-cmd-dataframe` crate in favor of the polars plugin. As such, this PR also removes the `dataframe` feature, related CI, and full releases of nushell.
31 lines
765 B
Batchfile
31 lines
765 B
Batchfile
@echo off
|
|
echo -------------------------------------------------------------------
|
|
echo Building nushell (nu.exe) and all the plugins
|
|
echo -------------------------------------------------------------------
|
|
echo.
|
|
|
|
echo Building nushell.exe
|
|
cargo build --locked
|
|
echo.
|
|
|
|
call :build crates\nu_plugin_example nu_plugin_example.exe
|
|
call :build ..\..\crates\nu_plugin_gstat nu_plugin_gstat.exe
|
|
call :build ..\..\crates\nu_plugin_inc nu_plugin_inc.exe
|
|
call :build ..\..\crates\nu_plugin_query nu_plugin_query.exe
|
|
call :build ..\..\crates\nu_plugin_custom_values nu_plugin_custom_values.exe
|
|
|
|
cd ..\..
|
|
exit /b 0
|
|
|
|
:build
|
|
setlocal
|
|
set "location=%~1"
|
|
set "target=%~2"
|
|
|
|
cd "%location%"
|
|
echo Building %target%
|
|
cargo build
|
|
echo.
|
|
endlocal
|
|
exit /b 0
|