mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-16 10:19:47 +02:00
10 lines
220 B
Bash
10 lines
220 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
RELEASE_TAG="1.2"
|
||
|
FILENAME="$1"
|
||
|
DOWNLOAD_URL="https://github.com/vcmi/vcmi-dependencies/releases/download/$RELEASE_TAG/$FILENAME.tgz"
|
||
|
|
||
|
mkdir ~/.conan
|
||
|
cd ~/.conan
|
||
|
curl -L "$DOWNLOAD_URL" | tar -xzf -
|