Project specific directories must be named after project name which is skyline-apiserver in case of skyline. Change-Id: I2a30c9ee86d4746b91eca3415b775994576bf606 Signed-off-by: Vladimir Kozhukalov <kozhukalov@gmail.com>
13 lines
209 B
Bash
Executable File
13 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
SKYLINE_CONSOLE_DIR=/skyline-console
|
|
|
|
git clone -b ${SKYLINE_CONSOLE_REF} --depth 1 ${SKYLINE_CONSOLE_REPO} ${SKYLINE_CONSOLE_DIR}
|
|
|
|
(
|
|
cd ${SKYLINE_CONSOLE_DIR}
|
|
pip install -U .
|
|
)
|