mirror of
https://git.freecumextremist.com/icscarythings/treebird-docker.git
synced 2024-11-04 21:14:11 +00:00
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"
|