Diff
Not logged in

Differences From Artifact [5a0dd193f2]:

To Artifact [4d1383c374]:


370
371
372
373
374
375
376
377
378

379
380
381
382
383
384
385
      pkgLog [appendArgs \
          "attempting to download URI \"" $uri \"...]
    }

    if {[isEagle]} then {
      set data [uri download -inline $uri]
    } else {
      set quiet [expr {!$verboseUriDownload}]
      set data [getFileViaHttp $uri 10 stdout $quiet]

    }

    if {$verboseUriDownload} then {
      pkgLog [appendArgs \
          "raw response data is: " $data]
    }








<
|
>







370
371
372
373
374
375
376

377
378
379
380
381
382
383
384
385
      pkgLog [appendArgs \
          "attempting to download URI \"" $uri \"...]
    }

    if {[isEagle]} then {
      set data [uri download -inline $uri]
    } else {

      set data [getFileViaHttp \
          $uri 10 stdout [expr {!$verboseUriDownload}] -binary true]
    }

    if {$verboseUriDownload} then {
      pkgLog [appendArgs \
          "raw response data is: " $data]
    }