diff --git a/probe.sh b/probe.sh new file mode 100644 index 0000000..e30d902 --- /dev/null +++ b/probe.sh @@ -0,0 +1,11 @@ +function check_if_installed() { + if [[ -f "$HOME/.cargo/bin/probe-rs" ]]; then + echo "already installed." + else + echo "installing probe-rs, cargo-embed and cargo-flash.." + curl -LsSf https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-tools-installer.sh | sh + fi +} + + +check_if_installed