forked from mirrors/treebird-docker
11 lines
289 B
Bash
Executable file
11 lines
289 B
Bash
Executable file
#!/bin/sh
|
|
# Setup steps to preform before the actual build
|
|
|
|
git submodule init
|
|
git submodule update
|
|
|
|
cp -r mastodont-c treebird/
|
|
cp treebird/{config.def.h,config.h}
|
|
ln -s treebird/config.h .
|
|
|
|
echo "Please edit config.h (symlinked for convenience) as needed, then run ./build_container.sh"
|