mirror of
https://bitbucket.org/seefoe/dockerized-swg.git
synced 2026-07-13 21:01:05 -04:00
15 lines
265 B
Bash
Executable File
15 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
basedir=$PWD
|
|
|
|
if [ ! -f $basedir/.setup ]; then
|
|
# clone repos
|
|
$basedir/utils/clone_repos.sh
|
|
|
|
# prepare swg-compiler
|
|
$basedir/utils/get_redist.sh
|
|
$basedir/utils/build_docker_images.sh
|
|
|
|
# create indicator of complete setup
|
|
touch $basedir/.setup
|
|
fi
|