Created
May 21, 2019 16:47
-
-
Save Candunc/339b315dcb894bb446b489151ae78297 to your computer and use it in GitHub Desktop.
Downloads FTB modpacks using the provided manifest.json on Windows. Requires wget.exe.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-Content .\manifest.json | ConvertFrom-Json | select -expand files | foreach { wget.exe --content-disposition -P .\overrides\mods\ "https://minecraft.curseforge.com/projects/$($_.projectID)/files/$($_.fileID)/download" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment