You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
290 B
Bash
8 lines
290 B
Bash
#!/usr/bin/env bash
|
|
set -e;
|
|
|
|
cd "$(dirname "$(realpath "$0")")";
|
|
|
|
test -d extern || mkdir extern;
|
|
test -d extern/tes3mp || git clone --branch 0.7.0 https://github.com/TES3MP/openmw-tes3mp.git extern/tes3mp
|
|
test -d extern/CrabNet || git clone https://github.com/TES3MP/CrabNet extern/CrabNet |