#!/bin/sh
# Find and delete any completion locks currently present in the object tree
# Locks are created by waitForCompletion --set and normally removed
# via --clear
# $Id$
find -L ${STO:-.} -name tmp.waitingFor -print -exec rm -rf '{}' ';' 2>/dev/null
