Mercurial > mplayer.hg
view tests/refupdate.sh @ 36763:7ac80299454d
Remove pointless assignment and variable.
A volatile read will/should not be optimized away regardless
of whether the result is assigned to a dummy variable or not.
author | reimar |
---|---|
date | Sun, 16 Feb 2014 16:29:57 +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