12 lines
335 B
Bash
12 lines
335 B
Bash
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
|