mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-22 21:01:00 +02:00
Also, fixed onos-upload-bits script to upload rc's to nightly/ Change-Id: I9bb8fe685492e23c740796879f0b66c307e26e56
12 lines
442 B
Bash
Executable File
12 lines
442 B
Bash
Executable File
#!/bin/bash
|
|
# -----------------------------------------------------------------------------
|
|
# Uploads ONOS distributable bits.
|
|
# -----------------------------------------------------------------------------
|
|
[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
|
|
. $ONOS_ROOT/tools/build/envDefaults
|
|
|
|
#FIXME need to export s3Creds
|
|
#TODO we could verify that ONOS_VERSION is set, and only upload that version
|
|
|
|
onosUploadBits.py
|