From 356a42914b6981dad0aa4c84c52e7a674a69a477 Mon Sep 17 00:00:00 2001 From: Lolenseu <98665691+lolenseu@users.noreply.github.com> Date: Tue, 1 Mar 2022 01:59:34 +0800 Subject: [PATCH 1/4] Create update.sh --- update.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 update.sh diff --git a/update.sh b/update.sh new file mode 100644 index 00000000..df00ce2c --- /dev/null +++ b/update.sh @@ -0,0 +1,7 @@ +sudo apt update && apt upgrade -y +apt install git +cd +rm -rf duino-coin +git clone https://github.com/revoxhere/duino-coin.git +cd duino-coin +chmod +x update.sh From cbe8a2eaed443698eca22895c28b9a315c7dc49c Mon Sep 17 00:00:00 2001 From: Lolenseu <98665691+lolenseu@users.noreply.github.com> Date: Tue, 1 Mar 2022 02:02:16 +0800 Subject: [PATCH 2/4] Update update.sh --- update.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/update.sh b/update.sh index df00ce2c..b4275bdf 100644 --- a/update.sh +++ b/update.sh @@ -5,3 +5,4 @@ rm -rf duino-coin git clone https://github.com/revoxhere/duino-coin.git cd duino-coin chmod +x update.sh +clear From 152c67cca458daeab3cb9c2d46884d3fd293eec3 Mon Sep 17 00:00:00 2001 From: Lolenseu <98665691+lolenseu@users.noreply.github.com> Date: Tue, 1 Mar 2022 02:21:22 +0800 Subject: [PATCH 3/4] Update update.sh --- update.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/update.sh b/update.sh index b4275bdf..474e0a88 100644 --- a/update.sh +++ b/update.sh @@ -1,8 +1,10 @@ -sudo apt update && apt upgrade -y -apt install git +#!/bin/sh +sudo apt update && sudo apt upgrade -y +sudo apt install git cd rm -rf duino-coin git clone https://github.com/revoxhere/duino-coin.git cd duino-coin +python3 -m pip install -r requirements.txt chmod +x update.sh clear From fe40452f0e2495f051534753dc3acc3c18037add Mon Sep 17 00:00:00 2001 From: Lolenseu <98665691+lolenseu@users.noreply.github.com> Date: Tue, 1 Mar 2022 03:23:22 +0800 Subject: [PATCH 4/4] Rename update.sh to Tools/update.sh --- update.sh => Tools/update.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename update.sh => Tools/update.sh (100%) diff --git a/update.sh b/Tools/update.sh similarity index 100% rename from update.sh rename to Tools/update.sh