This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit b4dceaa88c86659cfe26c314625488cfbb166f01 Author: Xiang Xiao <xiaoxi...@xiaomi.com> AuthorDate: Mon May 11 11:50:25 2020 +0800 tools/refresh.sh: shouldn't redirect "make oldconfig" to /dev/null since kconfig need interact with user to make the selection Signed-off-by: Xiang Xiao <xiaoxi...@xiaomi.com> --- tools/refresh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/refresh.sh b/tools/refresh.sh index e55959f..0319236 100755 --- a/tools/refresh.sh +++ b/tools/refresh.sh @@ -244,7 +244,7 @@ for CONFIG in ${CONFIGS}; do if [ "X${debug}" == "Xy" ]; then make oldconfig V=1 else - make oldconfig 1>/dev/null + make oldconfig fi fi fi