mirror of
https://github.com/pikami/garrysmod-server.git
synced 2024-11-25 06:57:29 +00:00
13 lines
166 B
Bash
13 lines
166 B
Bash
|
#!/bin/bash
|
||
|
source config.sh
|
||
|
|
||
|
# Get latest cfgs
|
||
|
git pull
|
||
|
|
||
|
# Move cfgs
|
||
|
for i in "${cfgs_map[@]}"
|
||
|
do
|
||
|
map=(${i//;/ })
|
||
|
cp cfgs/${map[0]} $gmod_dir/${map[1]}
|
||
|
done
|