I’m updating foundry to a version 11 and it broke an ass ton of my assets cause they’re all “verified version 10”
So all I have to do is change that number, they’re just maps so no need to update anything else, but I have like 400+ files to convert all in individual folders.
Please tell me there’s an easy way to do this. (I’m on Linux obviously)
I have made a python script and ran it on a clone of your git repo to confirm it works, simply run it at the root directory of wherever the files are, it will walk through and find module.json and do the replace.
</pre>
Neat script; just a touch overkill IMO compared to just using
sed
and bash!Changing the minimum may be undesirable - I think it’s only the latter value that needs to go from 10 -> 11.
If using Python, why not just use JSON module? Simpler and easier maintain without all those regex.
Still +1, on sed if one is on Linux.
Holy shit that’s awesome! Thanks