cmake docs: Fix variable expansion when adding tools dir to PATH

This commit is contained in:
Angus Gratton 2018-05-01 16:42:35 +10:00 committed by Angus Gratton
parent c7307de63e
commit 2fadf8a000

View file

@ -39,7 +39,7 @@ Linux and MacOS
Set up ``IDF_PATH`` and add ``idf.py`` to the PATH by adding the following two lines to ``~/.profile`` file::
export IDF_PATH=~/esp/esp-idf
export PATH="$PATH:'$IDF_PATH/tools'"
export PATH="$PATH:$IDF_PATH/tools"
Log off and log in back to make this change effective.