6 lines
181 B
Bash
Executable File
6 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
echo -e "\nSetting up for $ESPTARGET\n"
|
|
idf.py --preview set-target $ESPTARGET
|
|
idf.py --preview update-dependencies
|
|
idf.py --preview menuconfig
|
|
echo -e "\nAll done :3\n" |