Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix "wget: command not found" error when installing ccache (facebooki…
…ncubator#10995) Summary: In "Install FMT and download ccache on MacOS (facebookincubator#10933)", wget was used to download ccache in setup-macos.sh. However, wget is not pre-installed on MacOs by default, and the following error was thrown: ``` + wget -O ccache.tar.gz https://github.com/ccache/ccache/releases/download/v4.10.2/ccache-4.10.2-darwin.tar.gz ../scripts/setup-macos.sh: line 80: wget: command not found + tar -xf ccache.tar.gz tar: Error opening archive: Failed to open 'ccache.tar.gz' ``` This commit changes wget to curl, which is guaranteed to be pre-installed on MacOS. Pull Request resolved: facebookincubator#10995 Reviewed By: pedroerp Differential Revision: D62646279 Pulled By: kevinwilfong fbshipit-source-id: aaa2365ae013bb012f25556d4741e3a08ea7ef82
- Loading branch information