summaryrefslogtreecommitdiff
path: root/lib/sbin
diff options
context:
space:
mode:
authorikelley <ikelley@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-05-29 10:29:14 +0000
committerikelley <ikelley@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-05-29 10:29:14 +0000
commit8c8d687be044f97299cce38fb59dc55ab126df68 (patch)
treecba901f3c26ef1d38a6da7649472a4371dc7d10d /lib/sbin
parent736ec32cb389d5049de260bd19180720acddc4b2 (diff)
now that arrangements will have 'doc' directories, we want to ignore them when building a thornlist
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2861 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin')
-rw-r--r--lib/sbin/ThornList.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbin/ThornList.pl b/lib/sbin/ThornList.pl
index 570ab318..0503f108 100644
--- a/lib/sbin/ThornList.pl
+++ b/lib/sbin/ThornList.pl
@@ -44,7 +44,7 @@ if (! defined $thornlist)
@thorns = &FindDirectories("$arrangements_dir$arrangement");
foreach $thorn (@thorns) {
- print "\n$arrangement/$thorn";
+ print "\n$arrangement/$thorn" if ($thorn ne "doc");
}
}
}