Page 1 of 1

Install CLI on Mac

Posted: 28 Sep 2017, 14:25
by frient
Hello, I'm trying to install CLI tools on mac, but I'm getting the same error mentioned in this thread (viewtopic.php?f=12&t=5092)

Code: Select all

==> Satisfying dependencies
==> Downloading https://downloads.sourceforge.net/filebot/filebot/FileBot_4.7.9/
Already downloaded: /Users/frient/Library/Caches/Homebrew/Cask/filebot--4.7.9.tar.xz
==> Verifying checksum for Cask filebot
==> Note: running "brew update" may fix sha256 checksum errors
Error: Checksum for Cask 'filebot' does not match.

Expected: bae8ec7ee51f3c11b8c190c14199c42a299d72755dd9e14763ca87189dd1d687
Actual:   7a07d3f7cca5c0b38ca811984ef8da536da32932d68c1a6cce33ec2462b930bf
File:     /Users/frient/Library/Caches/Homebrew/Cask/filebot--4.7.9.tar.xz

To retry an incomplete download, remove the file above.

the problem at sourceforge (https://sourceforge.net/p/forge/site-support/15095/) is supposed to be fixed by now, right?

Is there a different command I need to use now, or a different link to follow?

Re: Install CLI on Mac

Posted: 28 Sep 2017, 14:30
by rednoah
Does this command give you a HTML error page?

Code: Select all

cat /Users/frient/Library/Caches/Homebrew/Cask/filebot--4.7.9.tar.xz

Re: Install CLI on Mac

Posted: 28 Sep 2017, 18:10
by frient
Yes, it does.

Code: Select all

<html><head>
<title>SourceForge</title>
<!-- <script src="/js/jquery.com/jquery-1.11.0.min.js"></script> -->
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="https://sourceforge.net/js/mirrors.js"></script>
<script src="/js/sf.js"></script>
<script>
var DR_loc = DR_parse_hash_url();
if (DR_loc) {
    DR_sf_main(DR_loc);
} else {
    window.location.href = 'https://sourceforge.net/home.html';
}
</script>
</head><body>
<noscript>
We're sorry -- the Sourceforge site is currently in Disaster Recovery mode, and currently requires
the use of javascript to function.  Please check back later.
</noscript>
</body></html>
Does this mean I just have to wait for sourceforge to fix it?

Re: Install CLI on Mac

Posted: 28 Sep 2017, 18:29
by rednoah
Yes, but you might need to ask brew to download the file again instead of checking the cached one which is actually an error page:

Code: Select all

brew cask cleanup

Re: Install CLI on Mac

Posted: 28 Sep 2017, 20:58
by frient
Thanks! That fixed it .