mirror of https://github.com/k3s-io/k3s
Merge pull request #51670 from karataliu/logdump
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Add fallback function 'detect-project' in skeleton util **What this PR does / why we need it**: detect-project is not implemented by default: When use ./hack/ginkgo-e2e.sh to run e2e test with custom providers, it will prompt ``` log-dump.sh: line 70: detect-project: command not found ``` And script exits with code 127. **Which issue this PR fixes** **Special notes for your reviewer**: **Release note**: `NONE` @shyamjvspull/6/head
commit
66b0bdb6e2
|
@ -93,3 +93,7 @@ function test-teardown {
|
||||||
function prepare-e2e {
|
function prepare-e2e {
|
||||||
echo "Skeleton Provider: prepare-e2e not implemented" 1>&2
|
echo "Skeleton Provider: prepare-e2e not implemented" 1>&2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function detect-project {
|
||||||
|
echo "Skeleton Provider: detect-project not implemented" 1>&2
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue