Espressif remove pre-existing /include/user_settings.h during compile all.

pull/6877/head
gojimmypi 2023-10-22 16:21:06 +02:00
parent f5d1cb5132
commit 9fe071fe73
1 changed files with 3 additions and 0 deletions

View File

@ -62,6 +62,9 @@ if [[ "$RUN_SETUP" == "--run-setup" ]]; then
echo "Testing a build of wolfSSL in ESP-IDF components directory"
echo ""
for file in "test_idf"; do
if [ -e "../../../include/user_settings.h" ]; then
mv "../../../include/user_settings.h" "../../../include/user_settings.h.${file}.bak"
fi
pushd ${SCRIPT_DIR}/examples/wolfssl_${file}/ && idf.py fullclean build;
THIS_ERR=$?
popd