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: Created May 2, 2018, 12:48 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/bash
2
3 IFS=$'\n' lines=($(cat /dev/stdin))
4
5 for (( i=0; i < ${#lines[*]}; i++ ))
6 do
7 if [[ ${lines[$i]} != *"Rendering"* ]] && [[ ${lines[$i]} != *"Wrote"* ]] ; th en
8 echo ${lines[$i]}
9 fi
10 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