minor fix in Postage.pm

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3687 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
linggao 2009-07-02 19:12:53 +00:00
parent 905951f7b4
commit add9a540ad

View File

@ -276,7 +276,9 @@ sub makescript {
my @otherpkgs=();
if (open(FILE1, "<$pkglist")) {
while (readline(FILE1)) {
chomp($_);
chomp($_); #remove newline
s/\s+$//; #remove trailing spaces
next if /^\s*$/; #-- skip empty lines
push(@otherpkgs,$_);
}
close(FILE1);
@ -365,6 +367,8 @@ sub includefile
while(<INCLUDE>) {
chomp($_);
s/\s+$//; #remove trailing spaces
next if /^\s*$/; #-- skip empty lines
push(@text, $_);
}