From 2fadf8a0004c2e1f4b5d46f3346ade0c778aeb44 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Tue, 1 May 2018 16:42:35 +1000 Subject: [PATCH] cmake docs: Fix variable expansion when adding tools dir to PATH --- docs/en/get-started/add-idf_path-to-profile-cmake.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/get-started/add-idf_path-to-profile-cmake.rst b/docs/en/get-started/add-idf_path-to-profile-cmake.rst index 0f5cbcef17..1ec8a79753 100644 --- a/docs/en/get-started/add-idf_path-to-profile-cmake.rst +++ b/docs/en/get-started/add-idf_path-to-profile-cmake.rst @@ -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. -- 2.40.0