diff options
author | Richard Lowe <richlowe@richlowe.net> | 2011-11-11 13:06:44 -0500 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2011-11-11 13:09:31 -0500 |
commit | 6b43fa4b12b9c8ef32d6ad596136abe0ec1894d8 (patch) | |
tree | b57f631c9527ed62bdaa4ac0528dad73845ee821 /usr/src | |
parent | 693380a9726a45b684bbd4b8349a3b5dfbc9704a (diff) | |
download | illumos-joyent-6b43fa4b12b9c8ef32d6ad596136abe0ec1894d8.tar.gz |
webrev: chomp not chop when parsing git file list.
All these years, and still making that mistake...
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/tools/scripts/webrev.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/tools/scripts/webrev.sh b/usr/src/tools/scripts/webrev.sh index 42e66b5aba..756dea33af 100644 --- a/usr/src/tools/scripts/webrev.sh +++ b/usr/src/tools/scripts/webrev.sh @@ -1802,7 +1802,7 @@ function git_wxfile $PERL -e 'my %files; while (<>) { - chop; + chomp; my ($c, $m) = split / /, $_, 2; open(F, "git show --name-only --pretty=format:'' $c |"); $_ = <F>; # First line is trash |