Ticket #49759: bzr-git-progress.patch
File bzr-git-progress.patch, 1.2 KB (added by ryandesign (Ryan Carsten Schmidt), 7 years ago) |
---|
-
/opt/local/libexec/macports/lib/port1.0/portfetch.tcl
old new 68 68 default bzr.cmd {[findBinary bzr $portutil::autoconf::bzr_path]} 69 69 default bzr.dir {${workpath}} 70 70 default bzr.revision {-1} 71 default bzr.pre_args {"--builtin --no-aliases checkout --lightweight --verbose"} 71 default bzr.env {BZR_PROGRESS_BAR=text} 72 default bzr.pre_args {"--builtin --no-aliases checkout --lightweight"} 72 73 default bzr.args "" 73 default bzr.post_args {"-r ${bzr.revision} ${bzr.url} ${worksrcdir} "}74 default bzr.post_args {"-r ${bzr.revision} ${bzr.url} ${worksrcdir} 2>&1 | tr -su '\\\\r' '\\\\n'"} 74 75 75 76 default cvs.cmd {[findBinary cvs $portutil::autoconf::cvs_path]} 76 77 default cvs.password "" … … 433 434 # if we're just using HEAD, we can make a shallow repo 434 435 append options " --depth=1" 435 436 } 436 set cmdstring "${git.cmd} clone $options ${git.url} ${worksrcpath} 2>&1 "437 set cmdstring "${git.cmd} clone $options ${git.url} ${worksrcpath} 2>&1 | tr -su '\\r' '\\n' 2>&1" 437 438 ui_debug "Executing: $cmdstring" 438 439 if {[catch {system $cmdstring} result]} { 439 440 return -code error [msgcat::mc "Git clone failed"]