11 lines
283 B
Bash
11 lines
283 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd /data
|
|
|
|
echo "Patching Blockland..."
|
|
curl -fsSLJ --clobber -o Blockland.exe $BL_PATCH_EXE_URL
|
|
curl -fsSLJ --clobber -o RedBlocklandLoader.dll $BL_PATCH_LOADER_URL
|
|
curl -fsSLJ --clobber --output-dir ./modules/ --create-dirs -o WineFix.dll $BL_PATCH_WINEFIX_URL
|