Contributor | Aryan Nanda |
Organization | BeagleBoard.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
red=`tput setaf 1` | |
green=`tput setaf 2` | |
blue=`tput setaf 4` | |
reset=`tput sgr0` | |
echo "Installing ESP IDF" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo "Installations Started" | |
# Clone Pixels_Seminar Repository | |
if [ ! -d "$HOME/Pixels_Seminar" ]; then | |
cd "$HOME" || (echo "Error: Could not navigate to Home" && exit 1) | |
echo "Cloning Pixels_Seminar" | |
git clone https://github.com/SRA-VJTI/Pixels_Seminar.git || (echo "Error: Could not clone repository" && exit 1) | |
else | |
echo "You have already Cloned Pixels_Seminar!" | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo "installing ESP IDF" | |
_shell_="${SHELL#${SHELL%/*}/}" | |
# Check whether esp-idf has already been installed | |
if [ -d $HOME/esp/esp-idf ]; then | |
echo "You already have installed esp-idf!" | |
else | |
# System Detection and ESP-IDF Installation | |
unameOut="$(uname -s)" |