Skip to content
This repository was archived by the owner on Apr 13, 2024. It is now read-only.

Commit 8880598

Browse files
committed
buildroot/rebuild.sh: Fix stderr redirection
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
1 parent 1299be1 commit 8880598

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildroot/rebuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ done
3535
# Download latest buildroot release
3636
BUILDROOT_VERSION=2019.02.3
3737
if [[ -d src ]]; then
38-
if [[ $(cd src && make print-version | cut -d - -f 1 >/dev/null) != "${BUILDROOT_VERSION}" ]]; then
38+
if [[ $(cd src && make print-version | cut -d - -f 1 2>/dev/null) != "${BUILDROOT_VERSION}" ]]; then
3939
rm -rf src
4040
download_br
4141
fi

0 commit comments

Comments
 (0)