Skip to content

Commit

Permalink
Merge pull request #2715 from ATR-oCiTy/master
Browse files Browse the repository at this point in the history
Fixed issue #2680 and Simple typo rectified
  • Loading branch information
efiop authored Nov 3, 2019
2 parents 6400eba + 2c0b209 commit 1b54c7f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion dvc/remote/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def _copy(cls, s3, from_info, to_info, extra_args):
# multipart.
#
# If an object's etag looks like '8978c98bb5a48c2fb5f2c4c905768afa',
# then it was transfered as a single part, which means that the chunk
# then it was transferred as a single part, which means that the chunk
# size used to transfer it was greater or equal to the ContentLength
# of that object. So to preserve that tag over the next transfer, we
# could use any value >= ContentLength.
Expand Down
9 changes: 0 additions & 9 deletions dvc/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ def _get_update_instructions(self):
"yum": "Run {yellow}yum{reset} update dvc",
"yay": "Run {yellow}yay{reset} {blue}-S{reset} dvc",
"formula": "Run {yellow}brew{reset} upgrade dvc",
"cask": "Run {yellow}brew cask{reset} upgrade dvc",
"apt": (
"Run {yellow}apt-get{reset} install"
" {blue}--only-upgrade{reset} dvc"
Expand Down Expand Up @@ -169,14 +168,6 @@ def _get_darwin(self):
return "formula"
else:
return "pip"

# NOTE: both pkg and cask put dvc binary into /usr/local/bin,
# so in order to know which method of installation was used,
# we need to actually call `brew cask`
ret = os.system("brew cask ls dvc")
if ret == 0:
return "cask"

return None

def _get_windows(self):
Expand Down

0 comments on commit 1b54c7f

Please sign in to comment.