#!/bin/sh
# rust started doing these weird random hash files again.. so here we
# go cleaning them out of the footprint again..

rm -f footprint.in
mv .footprint footprint.in

hash_pattern="icudtl.dat"
sed "/$hash_pattern/d" footprint.in > .footprint

rm -f footprint.in
