mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-10-29 09:22:49 +00:00
24 lines
590 B
Bash
24 lines
590 B
Bash
############################################################
|
|
#
|
|
# When running the ONL builder in isolation mode
|
|
# $HOME is set to the root of the ONL tree from
|
|
# which you entered the builder.
|
|
#
|
|
# The assumption here is that you are trying to build
|
|
# the tree from which you entered the builder, and
|
|
# thus we automatically source the setup.env file
|
|
# upon starting the shell inside the container.
|
|
#
|
|
############################################################
|
|
|
|
. setup.env
|
|
|
|
set -e
|
|
|
|
if [ -n "$ONL_AUTOBUILD" ]; then
|
|
make all
|
|
exit 0
|
|
else
|
|
echo Ready to build OpenNetworkLinux.
|
|
fi
|