You've already forked ca_injector
mirror of
https://github.com/zerotier/ca_injector.git
synced 2026-05-22 16:27:33 -07:00
f56e54565c
Signed-off-by: Erik Hollensbe <git@hollensbe.org>
14 lines
204 B
Bash
14 lines
204 B
Bash
#!/bin/bash
|
|
|
|
if [ ! -x $HOME/.cargo/bin/rustup ]
|
|
then
|
|
curl -sSL sh.rustup.rs >/tmp/rustup.sh && bash /tmp/rustup.sh -y
|
|
fi
|
|
|
|
if [ -f $HOME/.cargo/env ]
|
|
then
|
|
. $HOME/.cargo/env
|
|
fi
|
|
|
|
rustup default stable
|