Skip to content

Commit 4333081

Browse files
authored
Merge pull request #12097 from jsquyres/pr/update-check-help-strings
check-help-strings.pl: skip the 3rd-party directory
2 parents 7ea36ba + 15d8953 commit 4333081

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

contrib/check-help-strings.pl

100755100644
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env perl
22
#
33
# Copyright (c) 2014-2022 Cisco Systems, Inc. All rights reserved.
4+
# Copyright (c) 2023 Jeffrey M. Squyres. All rights reserved.
45
# $COPYRIGHT$
56
#
67
# Simple script to check all the opal_show_help (and orte_show_help)
@@ -94,6 +95,7 @@ sub match_files {
9495
# Don't recurse down "special" directories
9596
if (-d $_ &&
9697
((/^\.deps$/) || (/^\.libs$/) ||
98+
(/3rd-party/) ||
9799
(/^\.svn$/) || (/^\.hg$/) || (/^\.git$/))) {
98100
$File::Find::prune = 1;
99101
return;

0 commit comments

Comments
 (0)