Merge pull request #1693 from thaJeztah/upgrade_shellcheck_0.6.0
Upgrade shellcheck 0.6.0
This commit is contained in:
commit
89dd14d665
@ -1,10 +1,12 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=SC2016,SC2119,SC2155
|
# shellcheck disable=SC2016,SC2119,SC2155,SC2206,SC2207
|
||||||
#
|
#
|
||||||
# Shellcheck ignore list:
|
# Shellcheck ignore list:
|
||||||
# - SC2016: Expressions don't expand in single quotes, use double quotes for that.
|
# - SC2016: Expressions don't expand in single quotes, use double quotes for that.
|
||||||
# - SC2119: Use foo "$@" if function's $1 should mean script's $1.
|
# - SC2119: Use foo "$@" if function's $1 should mean script's $1.
|
||||||
# - SC2155: Declare and assign separately to avoid masking return values.
|
# - SC2155: Declare and assign separately to avoid masking return values.
|
||||||
|
# - SC2206: Quote to prevent word splitting, or split robustly with mapfile or read -a.
|
||||||
|
# - SC2207: Prefer mapfile or read -a to split command output (or quote to avoid splitting).
|
||||||
#
|
#
|
||||||
# You can find more details for each warning at the following page:
|
# You can find more details for each warning at the following page:
|
||||||
# https://github.com/koalaman/shellcheck/wiki/<SCXXXX>
|
# https://github.com/koalaman/shellcheck/wiki/<SCXXXX>
|
||||||
|
@ -1,10 +1,5 @@
|
|||||||
FROM debian:stretch-slim
|
FROM koalaman/shellcheck-alpine:v0.6.0
|
||||||
|
RUN apk add --no-cache bash make
|
||||||
RUN apt-get update && \
|
|
||||||
apt-get -y install make shellcheck && \
|
|
||||||
apt-get clean
|
|
||||||
|
|
||||||
WORKDIR /go/src/github.com/docker/cli
|
WORKDIR /go/src/github.com/docker/cli
|
||||||
ENV DISABLE_WARN_OUTSIDE_CONTAINER=1
|
ENV DISABLE_WARN_OUTSIDE_CONTAINER=1
|
||||||
CMD bash
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
@ -7,7 +7,7 @@ set -eu -o pipefail
|
|||||||
|
|
||||||
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
# shellcheck source=/go/src/github.com/docker/cli/scripts/build/.variables
|
# shellcheck source=/go/src/github.com/docker/cli/scripts/build/.variables
|
||||||
source $SCRIPTDIR/../build/.variables
|
source "$SCRIPTDIR"/../build/.variables
|
||||||
|
|
||||||
RESOURCES=$SCRIPTDIR/../winresources
|
RESOURCES=$SCRIPTDIR/../winresources
|
||||||
|
|
||||||
@ -26,9 +26,9 @@ VERSION_QUAD=$(echo -n "$VERSION" | sed -re 's/^([0-9.]*).*$/\1/' | tr . ,)
|
|||||||
|
|
||||||
# Pass version and commit information into the resource compiler
|
# Pass version and commit information into the resource compiler
|
||||||
defs=
|
defs=
|
||||||
[ ! -z "$VERSION" ] && defs+=( "-D DOCKER_VERSION=\"$VERSION\"")
|
[ -n "$VERSION" ] && defs+=( "-D DOCKER_VERSION=\"$VERSION\"")
|
||||||
[ ! -z "$VERSION_QUAD" ] && defs+=( "-D DOCKER_VERSION_QUAD=$VERSION_QUAD")
|
[ -n "$VERSION_QUAD" ] && defs+=( "-D DOCKER_VERSION_QUAD=$VERSION_QUAD")
|
||||||
[ ! -z "$GITCOMMIT" ] && defs+=( "-D DOCKER_COMMIT=\"$GITCOMMIT\"")
|
[ -n "$GITCOMMIT" ] && defs+=( "-D DOCKER_COMMIT=\"$GITCOMMIT\"")
|
||||||
|
|
||||||
function makeres {
|
function makeres {
|
||||||
"$WINDRES" \
|
"$WINDRES" \
|
||||||
|
@ -70,7 +70,7 @@ function runtests {
|
|||||||
GOPATH="$GOPATH" \
|
GOPATH="$GOPATH" \
|
||||||
PATH="$PWD/build/:/usr/bin:/usr/local/bin:/usr/local/go/bin" \
|
PATH="$PWD/build/:/usr/bin:/usr/local/bin:/usr/local/go/bin" \
|
||||||
DOCKER_CLI_E2E_PLUGINS_EXTRA_DIRS="$PWD/build/plugins-linux-amd64" \
|
DOCKER_CLI_E2E_PLUGINS_EXTRA_DIRS="$PWD/build/plugins-linux-amd64" \
|
||||||
"$(which gotestsum)" -- ./e2e/... ${TESTFLAGS-}
|
"$(command -v gotestsum)" -- ./e2e/... ${TESTFLAGS-}
|
||||||
}
|
}
|
||||||
|
|
||||||
export unique_id="${E2E_UNIQUE_ID:-cliendtoendsuite}"
|
export unique_id="${E2E_UNIQUE_ID:-cliendtoendsuite}"
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env sh
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
target="${1:-}"
|
target="${1:-}"
|
||||||
|
|
||||||
if [[ "$target" != "help" && -z "${DISABLE_WARN_OUTSIDE_CONTAINER:-}" ]]; then
|
if [ "$target" != "help" ] && [ -z "${DISABLE_WARN_OUTSIDE_CONTAINER:-}" ]; then
|
||||||
(
|
(
|
||||||
echo
|
echo
|
||||||
echo
|
echo
|
||||||
|
Loading…
x
Reference in New Issue
Block a user