mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-24 05:41:01 +02:00
based on workaround mentioned in https://github.com/facebook/buck/issues/469 Change-Id: Ibed05bf14b548320d91b3b39cb9abc21b06e44ca
8 lines
393 B
Bash
Executable File
8 lines
393 B
Bash
Executable File
#!/bin/bash
|
|
# -----------------------------------------------------------------------------
|
|
# Packages ONOS distributable into onos.tar.gz, onos.zip or a deb file
|
|
# -----------------------------------------------------------------------------
|
|
|
|
[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
|
|
cd $ONOS_ROOT && onos-buck build onos --deep --show-output && onos-check-bits
|