Skip to content

Commit

Permalink
minor polish: compileAllExamples
Browse files Browse the repository at this point in the history
  • Loading branch information
gojimmypi committed Feb 7, 2024
1 parent 68e554e commit 2ff9bbc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion IDE/Espressif/ESP-IDF/compileAllExamples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ if [[ "$IDF_PATH" == "" ]]; then
echo "Error: $IDF_PATH not found; run Espressif export.sh"
exit 1
fi
SCRIPT_DIR=$(builtin cd ${BASH_SOURCE%/*}; pwd)
SCRIPT_DIR=$(builtin cd "${BASH_SOURCE%/*}" || exit 1; pwd)
RUN_SETUP=$1
THIS_ERR=0

echo "Found IDF_PATH = $IDF_PATH"
echo "RUN_SETUP: $RUN_SETUP"

# Regular tests of wolfSSL in local component directories of each project:
#
Expand Down

0 comments on commit 2ff9bbc

Please sign in to comment.