bug fixes

This commit is contained in:
2025-04-30 11:43:13 -06:00
parent f02f963ed5
commit fec8cfdc42
7 changed files with 19 additions and 19 deletions
+15
View File
@@ -0,0 +1,15 @@
subprocess() {
echo -e "\nChanging ESPTARGET\n"
echo -e "Set esp target (esp32, esp32s3, esp32c6, esp8266, etc)"
read esp
eval "$1=$esp"
return 0
}
ret=''
subprocess ret
export ESPTARGET="${ret}"
echo -e "\nESPTARGET set to $ESPTARGET\n"
echo -e "\nAll done :3\n"