esp32_bluetooth_classic_sni.../requirements.sh
Matheus Eduardo Garbelini deb87fab6d fix path
2021-09-07 08:45:07 +08:00

12 lines
349 B
Bash
Executable file

#!/usr/bin/env bash
echo -e "\nInstalling cmake, clang and software-properties-common"
sudo apt install cmake clang software-properties-common -y
echo -e "\n\nInstalling latest stable wireshark"
sudo add-apt-repository --y ppa:wireshark-dev/stable
sudo apt-get update
sudo apt install wireshark-dev -y
echo "Done! Run build.sh to build project"