Search found 1 match

by scottymus
Thu Sep 17, 2020 4:09 pm
Forum: ESP-IDF
Topic: How can I solve `Not using an unsupported version of ...` warnings?
Replies: 4
Views: 7267

Re: How can I solve `Not using an unsupported version of ...` warnings?

This is my solution:

Code: Select all

source $HOME/esp/esp-idf/export.sh > /dev/null 2>%1
This line essentially discards the output from the export.sh script. Just put this in your .profile script (not your .bashrc) This will setup everything just once when you first login.

Scott