From 7abd19e656a42370bee6c72c05af9fb357aedad1 Mon Sep 17 00:00:00 2001 From: Mark_Jeong <81726531+markjung96@users.noreply.github.com> Date: Mon, 4 Nov 2024 18:44:28 +0900 Subject: [PATCH] feat: add v0.5.2 to arm install sh --- install.arm.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 install.arm.sh diff --git a/install.arm.sh b/install.arm.sh new file mode 100644 index 0000000..5d00da1 --- /dev/null +++ b/install.arm.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# 포멧과 클린업 +cargo fmt +cargo clippy --package cargo-stylus --package cargo-stylus-example + +# v0.5.1 설치 +git checkout v0.5.1-welldone +cargo install --path main --root ~/.cargo/v0.5.1-welldone + +# v0.5.2 설치 +git checkout v0.5.2-welldone +cargo install --path main --root ~/.cargo/v0.5.2-welldone + +# 설치된 경로 출력 +echo "v0.5.1-welldone: ~/.cargo/v0.5.1-welldone/bin/cargo-stylus" +echo "v0.5.2-welldone: ~/.cargo/v0.5.2-welldone/bin/cargo-stylus" \ No newline at end of file