summaryrefslogtreecommitdiffstats
path: root/vespalib/fix-hg.sh
blob: 1a535625c9689e504da363d0090a5d41578c96ad (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
td=${0%.sh}.pl
if [ -f "$td" ]; then
    find . -name '*.h' -o -name '*.hpp' | xargs $td
else
    echo "Could not find '${td}'"
fi