I’ve got a script in Juno (source) that downloads and installs the CMC canister locally.
While trying to install a clean project from scratch, I discovered my script does not work anymore because the source of the CMC wasm is not accessible anymore.
Forgot to close this. I believe wasm hosted by download.dfinity.systems are deleted after 6 months, therefore the “old” wasm I was trying to download was not available anymore.
To solve the issue I bumped the commit number to most recent and luckily, there was no breaking changes. So my deploy script for local development was still ok.
I would like to add that in this form, the CMC will not be able to create canisters using the notify_create_canister method. I ran into this issue here and the solution suggested was to deploy a locally modified version of CMC. I wrote a small readme how to build a custom CMC, a link to cmc.sh. I hope this helps someone