diff options
author | Robert Loehning <robert.loehning@nokia.com> | 2012-03-02 16:57:39 +0100 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@nokia.com> | 2012-03-05 09:50:41 +0100 |
commit | 453fa17432f85bbcee12f7a8ec0433ed21ed5e84 (patch) | |
tree | eb744d38669663d23d152ca6d9b51fff6776e408 /scripts | |
parent | bdae0ae5adaabf947f6e4a9022ab2c3a25a38d96 (diff) | |
download | qt-creator-453fa17432f85bbcee12f7a8ec0433ed21ed5e84.tar.gz |
Improved sample usage in hasCopyright.sh
Change-Id: Iae3ef128e62faba579ce7385bedc90a4e4600019
Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/hasCopyright.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/hasCopyright.sh b/scripts/hasCopyright.sh index 2e495a420d..fb86c93ae5 100755 --- a/scripts/hasCopyright.sh +++ b/scripts/hasCopyright.sh @@ -5,7 +5,7 @@ # string 'Copyright'. # # Sample usage: -# find . -type f -name \*.cpp -o -name \*.h | xargs ~/bin/hasCopyright.sh +# find . -type f -name \*.cpp -o -name \*.h | xargs ./scripts/hasCopyright.sh for i in "$@" ; do if test -f "$i" && test -s "$i" ; then |