Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: edit.sh

Issue 29768621: #10639 - node-sass output filter (Closed)
Patch Set: #10639 - node-sass output filter Created May 14, 2018, 2:57 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2 ########################################################################
3 ########################################################################
4 ## The cause of this script is to make the output of the ##
5 ## node-sass script more readable by filtering all repeated lines ##
6 ########################################################################
7 ########################################################################
8
9 while IFS= read -r line; do
10 if echo "$line" | grep -q -v "Rendering" &&
11 echo "$line" | grep -q -v "Wrote"
12 then
13 echo $line
14 fi
15 done
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld