diff options
| author | Ashish Chaudhari <ashish@ettus.com> | 2015-03-18 09:15:24 -0700 | 
|---|---|---|
| committer | Ashish Chaudhari <ashish@ettus.com> | 2015-03-18 09:16:52 -0700 | 
| commit | f9740c893bc4235aba347bc7fec867c7d9024b3f (patch) | |
| tree | 379d968de76af10e7dffca35c3afe15d256cedf5 /host | |
| parent | 6f51dcc43f0a99854f0ef790aade4979c82b5272 (diff) | |
| download | uhd-f9740c893bc4235aba347bc7fec867c7d9024b3f.tar.gz uhd-f9740c893bc4235aba347bc7fec867c7d9024b3f.tar.bz2 uhd-f9740c893bc4235aba347bc7fec867c7d9024b3f.zip  | |
imgs_downloader: Copy pkg to temp dir even if it is local
Diffstat (limited to 'host')
| -rw-r--r-- | host/utils/uhd_images_downloader.py.in | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/host/utils/uhd_images_downloader.py.in b/host/utils/uhd_images_downloader.py.in index 5b16c7bb5..3903edc8c 100644 --- a/host/utils/uhd_images_downloader.py.in +++ b/host/utils/uhd_images_downloader.py.in @@ -308,11 +308,12 @@ def main():                  if options.verbose:                      print "Downloaded %d of %d bytes" % (downloaded_size, reported_size)              else: -                temp_images_dest = os.path.join(options.base_url, options.filename) -                print "Copying images from: {0}".format(temp_images_dest) -                if not os.path.isfile(temp_images_dest): +                local_images_pkg = os.path.join(options.base_url, options.filename) +                print "Copying images from:     {0}".format(local_images_pkg) +                if not os.path.isfile(local_images_pkg):                      print "[ERROR] No such file."                      return 1 +                shutil.copyfile(local_images_pkg, temp_images_dest)              (checksum_match, calculated_checksum) = downloader.validate_checksum(                      checksum_fn,                      temp_images_dest,  | 
