Revision 9550
Added by Aaron Marcuse-Kubitza over 11 years ago
db.sh | ||
---|---|---|
179 | 179 |
mysqldump_diffable() |
180 | 180 |
{ |
181 | 181 |
echo_func |
182 |
mysqldump "$@"|{ pipe_delay; sed 's/^(-- Dump completed).*$/\1/'; } |
|
182 |
mysqldump "$@"|{ pipe_delay; echo_run sed 's/^(-- Dump completed).*$/\1/'; }
|
|
183 | 183 |
} |
184 | 184 |
|
185 | 185 |
|
Also available in: Unified diff
lib/sh/util.sh: $sed_cmd: don't use `command`, which causes sed calls (which are usually internal) to always be logged. instead, use echo_run wherever sed needs to be logged.