mirror of
https://bitbucket.org/seefoe/dockerized-swg.git
synced 2026-01-16 23:04:17 -05:00
12 lines
277 B
Bash
Executable File
12 lines
277 B
Bash
Executable File
#!/bin/bash
|
|
basedir=$PWD
|
|
|
|
# ensure that repo has been setup
|
|
$basedir/utils/initial_setup.sh
|
|
|
|
# run the docker image and build the source
|
|
docker run -v $basedir/src/:/swg/:z swg-compiler
|
|
|
|
# copy bins to our gameserver folder
|
|
cp $basedir/src/build/bin/* $basedir/gameserver/bin/
|