Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
59beb8c3
Unverified
Commit
59beb8c3
authored
Feb 21, 2019
by
Kubernetes Prow Robot
Committed by
GitHub
Feb 21, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #74299 from SataQiu/fix-shell-20190220
Fix some shellcheck failures in hack
parents
7d75b73e
0311c4dd
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
15 deletions
+7
-15
.shellcheck_failures
hack/.shellcheck_failures
+0
-6
benchmark-go.sh
hack/benchmark-go.sh
+0
-2
build-cross.sh
hack/build-cross.sh
+1
-1
build-go.sh
hack/build-go.sh
+2
-2
test-go.sh
hack/test-go.sh
+2
-2
update-all.sh
hack/update-all.sh
+1
-1
verify-all.sh
hack/verify-all.sh
+1
-1
No files found.
hack/.shellcheck_failures
View file @
59beb8c3
...
...
@@ -37,9 +37,6 @@
./cluster/test-smoke.sh
./cluster/update-storage-objects.sh
./cluster/validate-cluster.sh
./hack/benchmark-go.sh
./hack/build-cross.sh
./hack/build-go.sh
./hack/cherry_pick_pull.sh
./hack/generate-bindata.sh
./hack/generate-docs.sh
...
...
@@ -77,10 +74,8 @@
./hack/make-rules/update.sh
./hack/make-rules/verify.sh
./hack/make-rules/vet.sh
./hack/test-go.sh
./hack/test-integration.sh
./hack/test-update-storage-objects.sh
./hack/update-all.sh
./hack/update-bazel.sh
./hack/update-codegen.sh
./hack/update-generated-kms-dockerized.sh
...
...
@@ -95,7 +90,6 @@
./hack/update-staging-godeps.sh
./hack/update-translations.sh
./hack/update-workspace-mirror.sh
./hack/verify-all.sh
./hack/verify-api-groups.sh
./hack/verify-boilerplate.sh
./hack/verify-cli-conventions.sh
...
...
hack/benchmark-go.sh
View file @
59beb8c3
...
...
@@ -18,8 +18,6 @@ set -o errexit
set
-o
nounset
set
-o
pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
make
test
\
WHAT
=
"
$*
"
\
KUBE_COVER
=
""
\
...
...
hack/build-cross.sh
View file @
59beb8c3
...
...
@@ -20,7 +20,7 @@ set -o errexit
set
-o
nounset
set
-o
pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
/..
echo
"NOTE:
$0
has been replaced by 'make cross'"
echo
...
...
hack/build-go.sh
View file @
59beb8c3
...
...
@@ -20,12 +20,12 @@ set -o errexit
set
-o
nounset
set
-o
pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
/..
# For help output
ARGHELP
=
""
if
[[
"$#"
-gt
0
]]
;
then
ARGHELP
=
"WHAT='
$
@
'"
ARGHELP
=
"WHAT='
$
*
'"
fi
echo
"NOTE:
$0
has been replaced by 'make' or 'make all'"
...
...
hack/test-go.sh
View file @
59beb8c3
...
...
@@ -20,12 +20,12 @@ set -o errexit
set
-o
nounset
set
-o
pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
/..
# For help output
ARGHELP
=
""
if
[[
"$#"
-gt
0
]]
;
then
ARGHELP
=
"WHAT='
$
@
'"
ARGHELP
=
"WHAT='
$
*
'"
fi
echo
"NOTE:
$0
has been replaced by 'make test'"
...
...
hack/update-all.sh
View file @
59beb8c3
...
...
@@ -21,7 +21,7 @@ set -o errexit
set
-o
nounset
set
-o
pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
/..
echo
"NOTE:
$0
has been replaced by 'make update'"
echo
...
...
hack/verify-all.sh
View file @
59beb8c3
...
...
@@ -20,7 +20,7 @@ set -o errexit
set
-o
nounset
set
-o
pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
/..
# For help output
ARGHELP
=
""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment