9 lines
254 B
Bash
Executable File
9 lines
254 B
Bash
Executable File
#!/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"
|