mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-14 10:12:59 +02:00
8 lines
211 B
Bash
8 lines
211 B
Bash
#!/usr/bin/env bash
|
|
|
|
RELEASE_TAG="v1.8"
|
|
FILENAME="dependencies-$1"
|
|
DOWNLOAD_URL="https://github.com/vcmi/vcmi-deps-windows/releases/download/$RELEASE_TAG/$FILENAME.txz"
|
|
|
|
curl -L "$DOWNLOAD_URL" | tar -xf - --xz
|