From 32ac6ddfad2bc196e216c42249c73420542daac0 Mon Sep 17 00:00:00 2001 From: Jonathan Hui Date: Tue, 26 Jul 2022 14:51:14 -0700 Subject: [PATCH] [bootstrap] apply `shfmt` diffs (#7946) --- bootstrap | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bootstrap b/bootstrap index 881f2c501..637c45cac 100755 --- a/bootstrap +++ b/bootstrap @@ -39,7 +39,8 @@ nlbuild_autotools_stem="third_party/nlbuild-autotools/repo" abs_srcdir=$(cd "$(dirname "${0}")" && pwd) # filter out knowning information from stderr which is causing GitHub annotation check warnings. -(cd "$abs_srcdir" && exec "$abs_srcdir/$nlbuild_autotools_stem/scripts/bootstrap" -I "$abs_srcdir/$nlbuild_autotools_stem" "${@}") 2> \ - >(grep -v "installing 'third_party/nlbuild-autotools/repo/third_party/autoconf/missing'" \ +(cd "$abs_srcdir" && exec "$abs_srcdir/$nlbuild_autotools_stem/scripts/bootstrap" -I "$abs_srcdir/$nlbuild_autotools_stem" "${@}") 2> >( + grep -v "installing 'third_party/nlbuild-autotools/repo/third_party/autoconf/missing'" \ | grep -v "installing 'third_party/nlbuild-autotools/repo/third_party/autoconf/compile'" \ - | grep -v "installing 'third_party/nlbuild-autotools/repo/third_party/autoconf/depcomp'" 1>&2) + | grep -v "installing 'third_party/nlbuild-autotools/repo/third_party/autoconf/depcomp'" 1>&2 +)