Mercurial > mplayer.hg
view tests/refupdate.sh @ 34496:1c7446e6c426
vd theora: cosmetics: K&R style, alignment
Additionally one INFO level output message was slightly changed.
patch by Giorgio Vazzana, mywing81 gmail com
author | al |
---|---|
date | Sat, 21 Jan 2012 17:43:06 +0000 |
parents | 6dc79618ec0e |
children |
line wrap: on
line source
#!/bin/sh # updates all changed/new results in ref/ find res -name '*.bad' | while read bad_res ; do ref_file="ref/${bad_res#res/}" ref_file="${ref_file%.bad}" mkdir -p "$(dirname "$ref_file")" cp "$bad_res" "$ref_file" done