summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-07-18 15:29:36 +0100
committerCarl Hetherington <cth@carlh.net>2014-07-18 15:29:36 +0100
commitf23b43e62e7c8b4e1ff1ef179b5debe1f13f792b (patch)
tree902898c2b156b8b7f585ee4ca224ffdec466d615
parent5cbdd199b5a597d11b058743de3e1d93ab6ed228 (diff)
parent70042c6f30036787badbf25f3dac7d1644f5b481 (diff)
Merge branch '1.0' of ssh://main.carlh.net/home/carl/git/libdcp into 1.0
-rwxr-xr-xrun/tests4
1 files changed, 2 insertions, 2 deletions
diff --git a/run/tests b/run/tests
index b4b1090f..5c99f479 100755
--- a/run/tests
+++ b/run/tests
@@ -53,7 +53,7 @@ fi
# Run dcpinfo on all the DCPs in private/metadata, writing $work/info.log
rm -f $work/info.log
-for d in `find $private/metadata -mindepth 1 -maxdepth 1 -type d | sort`; do
+for d in `find $private/metadata -mindepth 1 -maxdepth 1 -type d | sort -f -d`; do
if [ `basename $d` != ".git" ]; then
$dcpinfo --ignore-missing-assets -k -s $d 2> /dev/null >> $work/info.log
if [ "$?" != "0" ]; then
@@ -76,7 +76,7 @@ rm -f $work/info2.log
rm -rf $work/private
mkdir $work/private
cp -r $private/* $work/private
-for d in `find $work/private/metadata -mindepth 1 -maxdepth 1 -type d | sort`; do
+for d in `find $work/private/metadata -mindepth 1 -maxdepth 1 -type d | sort -f -d`; do
if [ `basename $d` != ".git" ]; then
$work/rewrite_subs $d
$dcpinfo --ignore-missing-assets -k -s $d >> $work/info2.log