mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-28 03:42:09 +00:00
tools: fix branch and runime repo
Kata 2.0 lives in `github.com/kata-containers/kata-containers`, so all scripts should point to it. Currently the branch for Kata 2.0 is 2.0-dev not master, then the branch envar must be used instead of hardcoding `master` as default branch. Signed-off-by: Julio Montes <julio.montes@intel.com>
This commit is contained in:
parent
56b50785f0
commit
5ff530371e
@ -30,9 +30,9 @@ install_yq() {
|
||||
|
||||
get_from_kata_deps() {
|
||||
local dependency="$1"
|
||||
BRANCH=${BRANCH:-master}
|
||||
BRANCH=${branch:-master}
|
||||
local branch="${2:-${BRANCH}}"
|
||||
local runtime_repo="github.com/kata-containers/runtime"
|
||||
local runtime_repo="github.com/kata-containers/kata-containers"
|
||||
GOPATH=${GOPATH:-${HOME}/go}
|
||||
local runtime_repo_dir="${GOPATH}/src/${runtime_repo}"
|
||||
# For our CI, we will query the local versions.yaml file both for kernel and
|
||||
|
Loading…
Reference in New Issue
Block a user