9 lines
254 B
Plaintext
9 lines
254 B
Plaintext
|
#!/bin/bash
|
||
|
echo "[info] Preparing to setup dependencies"
|
||
|
./install-dependencies
|
||
|
echo "[info] Preparing to build projects from source"
|
||
|
./build-source
|
||
|
echo "[info] Preparing to install components"
|
||
|
./install-components
|
||
|
echo "[info] Build process finished"
|