Ticket #33932: portlint.tcl.diff
File portlint.tcl.diff, 1.1 KB (added by ryandesign (Ryan Carsten Schmidt), 13 years ago) |
---|
-
portlint.tcl
624 624 catch {set svn_cmd [findBinary svn]} 625 625 if {$svn_cmd != "" && ([file exists $portpath/.svn] || ![catch {exec $svn_cmd info $portpath > /dev/null 2>@1}])} { 626 626 ui_debug "Checking svn properties" 627 if [catch {exec $svn_cmd propget svn:keywords $portfile 2> @1} output] {627 if [catch {exec $svn_cmd propget svn:keywords $portfile 2>/dev/null} output] { 628 628 ui_warn "Unable to check for svn:keywords property: $output" 629 629 } else { 630 630 ui_debug "Property svn:keywords is \"$output\", should be \"Id\"" … … 633 633 incr errors 634 634 } 635 635 } 636 if [catch {exec $svn_cmd propget svn:eol-style $portfile 2> @1} output] {636 if [catch {exec $svn_cmd propget svn:eol-style $portfile 2>/dev/null} output] { 637 637 ui_warn "Unable to check for svn:eol-style property: $output" 638 638 } else { 639 639 ui_debug "Property svn:eol-style is \"$output\", should be \"native\""