From cd721fc3636c568ef1795203c242647fd0033ff1 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Fri, 4 Mar 2022 16:17:33 -0600 Subject: [PATCH] build script for mac and linux (#4732) --- build-all-maclin.sh | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 build-all-maclin.sh diff --git a/build-all-maclin.sh b/build-all-maclin.sh new file mode 100755 index 0000000000..f6c1a5902e --- /dev/null +++ b/build-all-maclin.sh @@ -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 ../..