ed622f9549
Add debian packaging folder for distributedcloud-client. Test Plan: Pass: build package on Debian Pass: build Debian image Pass: install Debian image Pass: build package on CentOS Pass: build CentOS image Pass: install CentOS image Pass: CentOS controller unlocked/available Story: 2009101 Task: 43965 Signed-off-by: Fabricio Henrique Ramos <fabriciohenrique.ramos@windriver.com> Change-Id: Ibb98a7de601580cd53002f386afb620417a97aa4
14 lines
271 B
Bash
Executable File
14 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
PKG_BUILD_NAME=$1
|
|
PKG_BUILD_DIR=$(realpath `pwd`/${PKG_BUILD_NAME})
|
|
|
|
STX_BASE=$(realpath ${MY_REPO}/stx)
|
|
PKG_BASE=$(realpath ${STX_BASE}/distributedcloud-client/distributedcloud-client)
|
|
|
|
mkdir ${PKG_BUILD_NAME}
|
|
|
|
cp -r ${PKG_BASE}/* ${PKG_BUILD_DIR}/
|