mirror of
https://github.com/Dummi26/mers.git
synced 2025-12-15 19:47:50 +01:00
move old mers to old/ and update gitignore
This commit is contained in:
4
old/build_scripts/build.sh
Executable file
4
old/build_scripts/build.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env sh
|
||||
cd ../mers
|
||||
cargo build --release
|
||||
cp target/release/mers ../build_scripts
|
||||
5
old/build_scripts/build_cross.sh
Executable file
5
old/build_scripts/build_cross.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env sh
|
||||
./build_musl.sh
|
||||
cd ../mers
|
||||
cargo build --release --target x86_64-pc-windows-gnu
|
||||
cp target/x86_64-pc-windows-gnu/release/mers.exe ../build_scripts
|
||||
4
old/build_scripts/build_musl.sh
Executable file
4
old/build_scripts/build_musl.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env sh
|
||||
cd ../mers
|
||||
cargo build --release --target x86_64-unknown-linux-musl
|
||||
cp target/x86_64-unknown-linux-musl/release/mers ../build_scripts
|
||||
5
old/build_scripts/install_nu_plugin.sh
Executable file
5
old/build_scripts/install_nu_plugin.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env sh
|
||||
cd ../mers
|
||||
cargo build --features nushell_plugin --profile nushellplugin
|
||||
cp target/nushellplugin/mers ../build_scripts/nu_plugin_mers
|
||||
echo "done. now run 'register nu_plugin_mers' in nu. You should then be able to use mers-nu."
|
||||
4
old/build_scripts/install_nu_plugin_auto.sh
Executable file
4
old/build_scripts/install_nu_plugin_auto.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/usr/bin/env nu
|
||||
./install_nu_plugin.sh
|
||||
register nu_plugin_mers
|
||||
echo "registered plugin automatically."
|
||||
BIN
old/build_scripts/mers
Executable file
BIN
old/build_scripts/mers
Executable file
Binary file not shown.
BIN
old/build_scripts/mers.exe
Executable file
BIN
old/build_scripts/mers.exe
Executable file
Binary file not shown.
Reference in New Issue
Block a user