diff options
author | sappho <sappho@sappho.io> | 2023-07-14 01:55:26 -0400 |
---|---|---|
committer | sappho <sappho@sappho.io> | 2023-07-14 01:55:26 -0400 |
commit | 95ac30070823bea03da6610db2b0684fd96e1f7e (patch) | |
tree | 7e2da9edf1ffba6a9d9cd3edcd7d0337d1b464d8 /ci/_docker_script.sh | |
parent | 6e0de1be31d958156117e03e3326622cece1cea5 (diff) |
add ci scripts, update makefile
Diffstat (limited to 'ci/_docker_script.sh')
-rw-r--r-- | ci/_docker_script.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ci/_docker_script.sh b/ci/_docker_script.sh new file mode 100644 index 0000000..ba5065d --- /dev/null +++ b/ci/_docker_script.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +cd /mnt/curl/ +git config --global --add safe.directory "*" +rm -rf ./sm-1.11 +git clone https://github.com/alliedmodders/sourcemod --branch 1.11-dev sm-1.11 --recursive +rm -rf ./mm-1.11 +git clone https://github.com/alliedmodders/metamod-source --branch 1.11-dev mm-1.11 --recursive +make clean +make |