##// END OF EJS Templates
largefiles: opts appears to already be bytes in this instance...
Augie Fackler -
r37773:88675432 default
parent child Browse files
Show More
@@ -211,6 +211,7 b' test-largefiles-cache.t'
211 211 test-largefiles-misc.t
212 212 test-largefiles-small-disk.t
213 213 test-largefiles-update.t
214 test-largefiles.t
214 215 test-lfs-largefiles.t
215 216 test-linerange.py
216 217 test-locate.t
@@ -897,7 +897,7 b' def hgclone(orig, ui, opts, *args, **kwa'
897 897 # Caching is implicitly limited to 'rev' option, since the dest repo was
898 898 # truncated at that point. The user may expect a download count with
899 899 # this option, so attempt whether or not this is a largefile repo.
900 if opts.get(r'all_largefiles'):
900 if opts.get('all_largefiles'):
901 901 success, missing = lfcommands.downloadlfiles(ui, repo, None)
902 902
903 903 if missing != 0:
General Comments 0
You need to be logged in to leave comments. Login now