Skip to content

Commit fb91ff0

Browse files
authored
Update install.sh
1 parent 35910a9 commit fb91ff0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/dexterous_developer/install.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ if ! (which rustup > /dev/null && which cargo > /dev/null); then
88
fi
99

1010
dpkg -l | grep build-essential || (apt update && apt install build-essential -y -qq)
11+
dpkg -l | grep libssl-dev || (apt update && apt install libssl-dev -y -qq)
12+
dpkg -l | grep pkg-config || (apt update && apt install pkg-config -y -qq)
1113

1214
if ! cargo install --list | grep "cargo-binstall" > /dev/null; then
1315
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
@@ -17,4 +19,4 @@ apt install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev libwayland-d
1719

1820
cargo binstall dexterous_developer_cli --locked -y
1921

20-
rustup default nightly
22+
rustup default nightly

0 commit comments

Comments
 (0)