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`

@shyamjvs
pull/6/head
Kubernetes Submit Queue 2017-09-25 12:23:11 -07:00 committed by GitHub
commit 66b0bdb6e2
1 changed files with 4 additions and 0 deletions

View File

@ -93,3 +93,7 @@ function test-teardown {
function prepare-e2e {
echo "Skeleton Provider: prepare-e2e not implemented" 1>&2
}
function detect-project {
echo "Skeleton Provider: detect-project not implemented" 1>&2
}