diff options
author | dwhite <dwhite@FreeBSD.org> | 1999-08-29 19:16:29 +0000 |
---|---|---|
committer | dwhite <dwhite@FreeBSD.org> | 1999-08-29 19:16:29 +0000 |
commit | 84de4ae03c8001e3df74f9fd3821db4a7342bcfd (patch) | |
tree | c49e03ed7903e5c955e2b5d2cc2965f19c8d5f66 | |
parent | c0fcda6e0b5309b4c6fca3c39f53535a9f2ef00d (diff) | |
download | FreeBSD-src-84de4ae03c8001e3df74f9fd3821db4a7342bcfd.zip FreeBSD-src-84de4ae03c8001e3df74f9fd3821db4a7342bcfd.tar.gz |
Remove tee from stage1 call. You can't capture the return code from stage1
(easily) so it gives false 'success' indications.
-rwxr-xr-x | release/picobsd/build/build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/picobsd/build/build b/release/picobsd/build/build index b5a7ad3..8a999f6 100755 --- a/release/picobsd/build/build +++ b/release/picobsd/build/build @@ -92,7 +92,7 @@ main() { (cd ../${TYPE}; make -f ../build/Makefile.conf ) echo "" - ./stage1 2>&1 | tee stage1.out + ./stage1 if [ "X$?" != "X0" ] ; then echo "" echo "-> ERROR in \"${i}\" script. Aborting the build process." |