bug 483435 - remove windows wlock.lnk file after hg pull.

This commit is contained in:
Bob Clary 2009-03-14 15:27:06 -07:00
Родитель 72106eeca0
Коммит 965a0c521b
1 изменённых файлов: 14 добавлений и 2 удалений

Просмотреть файл

@ -73,6 +73,10 @@ if [[ -n "$TEST_MOZILLA_HG" ]]; then
cd $TEST_MOZILLA_HG_LOCAL
hg pull
if [[ "$OSID" == "nt" ]]; then
# remove spurious lock file
rm -f $TEST_MOZILLA_HG_LOCAL/.hg/wlock.lnk
fi
hg update -C
echo "`hg root` id `hg id`"
fi
@ -89,6 +93,10 @@ if [[ -n "$TEST_MOZILLA_HG" ]]; then
cd mozilla
hg pull
if [[ "$OSID" == "nt" ]]; then
# remove spurious lock file
rm -f $TEST_MOZILLA_HG/.hg/wlock.lnk
fi
hg update -C
hg update -r $TEST_MOZILLA_HG_REV
@ -192,6 +200,10 @@ case $product in
cd mobile
hg pull
if [[ "$OSID" == "nt" ]]; then
# remove spurious lock file
rm -f .hg/wlock.lnk
fi
hg update -C
# XXX need to deal with mobile revisions from different repositories