10 lines
440 B
Bash
10 lines
440 B
Bash
#!/bin/bash
|
|
set -xeuo pipefail
|
|
source /opt/l4d2/scripts/helpers
|
|
overlay=$(basename "$0")
|
|
|
|
# https://github.com/SirPlease/L4D2-Competitive-Rework
|
|
|
|
steam mkdir -p /opt/l4d2/overlays/$overlay/left4dead2
|
|
test -d /opt/l4d2/overlays/$overlay/left4dead2/cfg/cfgogl || \
|
|
curl -L https://github.com/SirPlease/L4D2-Competitive-Rework/archive/refs/heads/master.tar.gz | steam tar -xz --strip-components=1 -C /opt/l4d2/overlays/$overlay/left4dead2
|