Skip to content

Commit 925a2af

Browse files
committed
Corrected Renode install script
1 parent 9a89922 commit 925a2af

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

install_tools.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ fi
3636
# Install Renode only if not already installed
3737
if ! command -v renode >/dev/null 2>&1; then
3838
wget -q https://github.com/renode/renode/releases/download/v1.16.1/renode_1.16.1_amd64.deb
39-
sudo dpkg -i renode_1.16.1_amd64.deb
39+
sudo dpkg -i renode_1.16.1_amd64.deb || true
40+
sudo apt-get update
41+
sudo apt-get install -f -y
4042
rm renode_1.16.1_amd64.deb
4143
fi
4244

0 commit comments

Comments
 (0)