From: Maxim Belkin Date: Tue, 11 Aug 2020 13:03:01 +0000 (-0500) Subject: Makefile: fix 'lesson-fixme' target for Windows (#486) X-Git-Url: https://git.arvados.org/rnaseq-cwl-training.git/commitdiff_plain/95221b1df8c1249d51e4c0c6852288fe2b694aa7 Makefile: fix 'lesson-fixme' target for Windows (#486) Git for Windows doesn't provide fgrep, which is a shortcut to call `grep -F` on Mac and Linux. Instead, we have to use full arguments. --- diff --git a/Makefile b/Makefile index 7d2130f..b585662 100644 --- a/Makefile +++ b/Makefile @@ -146,7 +146,7 @@ lesson-files : ## * lesson-fixme : show FIXME markers embedded in source files lesson-fixme : - @fgrep -i -n FIXME ${MARKDOWN_SRC} || true + @grep --fixed-strings --word-regexp --line-number --no-messages FIXME ${MARKDOWN_SRC} || true ## ## IV. Auxililary (plumbing) commands