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 June 12, 2018, 2:56 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 # Filter out uninformative output lines from the node-sass cron job script
4
5 while read line; do
6 case "$line" in
7 *Rendering?Complete,?saving*file*|*Wrote?CSS?to?*)
mathias 2018/06/19 12:59:48 As discussed: Please remove the leading asterisks
8 continue
mathias 2018/06/19 12:59:48 Note: the `continue` instruction is not exactly ne
9 ;;
10 *)
11 echo "$line"
12 ;;
13 esac
14 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