Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Haster <chaster@utexas.edu>2019-07-26 20:29:37 +0300
committerChristopher Haster <chaster@utexas.edu>2019-07-27 03:51:20 +0300
commit19838371fb6e24ddbcec196b2269472f5eafef7f (patch)
treedce7b3abda2d81534770f32560d7244d876587c1 /Makefile
parent312326c4e47ed9bc19f0b120faf9d126a15c0bd1 (diff)
Fixed issue where sed buffering (QUIET=1) caused Travis timeout
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 185d8e5..640dd63 100644
--- a/Makefile
+++ b/Makefile
@@ -46,7 +46,7 @@ test: test_format test_dirs test_files test_seek test_truncate \
test_%: tests/test_%.sh
ifdef QUIET
- @./$< | sed -n '/^[-=]/p'
+ @./$< | sed -nu '/^[-=]/p'
else
./$<
endif