mirror of https://gitee.com/openkylin/libvirt.git
Make syntax check notice assignments w/o surrounding spaces.
This commit is contained in:
parent
721949059b
commit
a1cbe4b5a9
|
@ -144,6 +144,14 @@ foreach my $file (@ARGV) {
|
|||
$ret = 1;
|
||||
last;
|
||||
}
|
||||
|
||||
# Require spaces around assignment '=' and compounds
|
||||
while ($data =~ /[^!<>&|\-+*\/%\^'= ]=[^=]/ ||
|
||||
$data =~ /[^!<>&|\-+*\/%\^'=]=[^= \\\n]/) {
|
||||
print "$file:$.: $line";
|
||||
$ret = 1;
|
||||
last;
|
||||
}
|
||||
}
|
||||
close FILE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue