forked from espressif/esp-idf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove bin/ directory in favour of an add_path.sh script that can be …
…sourced Remaining file in bin/ will be moved out as part of !34
- Loading branch information
1 parent
fb87346
commit d793d23
Showing
5 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# This shell snippet appends useful esp-idf tools to your PATH environment | ||
# variable. This means you can run esp-idf tools without needing to give the | ||
# full path. | ||
# | ||
# Use this script like this: | ||
# | ||
# source ${IDF_PATH}/add_path.sh | ||
# | ||
if [ -z ${IDF_PATH} ]; then | ||
echo "IDF_PATH must be set before including this script." | ||
else | ||
IDF_ADD_PATHS_EXTRAS="${IDF_PATH}/components/esptool_py/:${IDF_PATH}/components/partition_table/" | ||
export PATH="${PATH}:${IDF_ADD_PATHS_EXTRAS}" | ||
echo "Added to PATH: ${IDF_ADD_PATHS_EXTRAS}" | ||
fi | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.