From d43abc062477b4e4d7c1440297fa28f1d770a4dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Tue, 27 Jun 2023 11:02:09 +0200 Subject: [PATCH] chore: moved install scripts to ./bin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Done this to preemptively declutter root dir. Signed-off-by: Christina Sørensen --- install => bin/install | 2 +- bin/install_debug | 3 +++ install_debug | 3 --- 3 files changed, 4 insertions(+), 4 deletions(-) rename install => bin/install (64%) create mode 100755 bin/install_debug delete mode 100755 install_debug diff --git a/install b/bin/install similarity index 64% rename from install rename to bin/install index 9563097..6133cdf 100755 --- a/install +++ b/bin/install @@ -1,3 +1,3 @@ #!/usr/bin/env bash cargo rustc --release -- -C target-cpu=native -cp ./target/release/gg ~/.local/bin +cargo install --path . diff --git a/bin/install_debug b/bin/install_debug new file mode 100755 index 0000000..4201412 --- /dev/null +++ b/bin/install_debug @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +cargo rustc +cargo install --path . diff --git a/install_debug b/install_debug deleted file mode 100755 index 61f87cd..0000000 --- a/install_debug +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash -cargo rustc -cp ./target/debug/gg ~/.local/bin