Left: | ||
Right: |
OLD | NEW |
---|---|
(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*) | |
8 ;; | |
9 *) | |
10 echo "$line" | |
11 ;; | |
12 esac | |
13 done | |
OLD | NEW |