This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch revert-179-osx-sim in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 3ee9195f13273b0295d3fa77047c8d8c471cfcb2 Author: Alin Jerpelea <[email protected]> AuthorDate: Wed Jan 29 09:26:02 2020 +0100 Revert "sethost.sh: Don't ignore "make olddefconfig" failure" This reverts commit 431317ef269c8017a0626bf013f75d5020d7408c. --- tools/sethost.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/sethost.sh b/tools/sethost.sh index 2983095..2cd63ff 100755 --- a/tools/sethost.sh +++ b/tools/sethost.sh @@ -244,9 +244,9 @@ echo " Refreshing..." cd $nuttx || { echo "ERROR: failed to cd to $nuttx"; exit 1; } make clean_context 1>/dev/null 2>&1 if [ "X${debug}" = "Xy" ]; then - make olddefconfig V=1 || { echo "ERROR: failed to refresh"; exit 1; } + make olddefconfig V=1 else - make olddefconfig 1>/dev/null || { echo "ERROR: failed to refresh"; exit 1; } + make olddefconfig 1>/dev/null 2>&1 fi # Move config file to correct location and restore any previous .config
