aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/fix-hg.sh
blob: 57c7d48bc5806b7d9c60cd82b516794edec2bfe7 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh
# Copyright 2017 Yahoo Holdings. 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