summaryrefslogtreecommitdiff
path: root/lib/sbin/ThornList.pl
diff options
context:
space:
mode:
authorschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-08-20 11:31:01 +0000
committerschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-08-20 11:31:01 +0000
commitb010add0a372c685f2e1e87044a343abdcf64cc7 (patch)
treeeab4a1a477227c50d91966dc593c24f59703d218 /lib/sbin/ThornList.pl
parentb9d9efd47d4071adb28e58338c562f7b036e307f (diff)
Create a thorn list from an arrangement directory with newlines after
each thorn, not in front of each thorn. git-svn-id: http://svn.cactuscode.org/flesh/trunk@3851 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/ThornList.pl')
-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 f4e9f48f..e53ba8e6 100644
--- a/lib/sbin/ThornList.pl
+++ b/lib/sbin/ThornList.pl
@@ -79,7 +79,7 @@ elsif (! defined $thornlist)
@thorns = &FindDirectories("$arrangements_dir$arrangement");
foreach my $thorn (@thorns) {
- print "\n$arrangement/$thorn" if ($thorn ne "doc");
+ print "$arrangement/$thorn\n" if ($thorn ne "doc");
}
}
}