Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-11-09 18:12:42 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-09 18:12:42 +0300
commite6a54b33a9712d7f1a995df47f678fbb78bcd6b7 (patch)
treecfd401dc851da9632d9be07965f209d7c5838e3f /tooling
parentb808458daa86105dd2101893961338912961ee92 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'tooling')
-rwxr-xr-xtooling/bin/shellcheck22
1 files changed, 0 insertions, 22 deletions
diff --git a/tooling/bin/shellcheck b/tooling/bin/shellcheck
deleted file mode 100755
index b499bfa3e5e..00000000000
--- a/tooling/bin/shellcheck
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-root="$(cd "$(dirname "$0")/../.." || exit ; pwd -P)"
-
-if [ $# -ne 0 ]; then
- shellcheck --exclude=SC1071 --external-sources "$@"
-else
- find \
- "${root}/bin" \
- "${root}/tooling" \
- -type f \
- -not -path "*.swp" \
- -not -path "*.rb" \
- -not -path "*.js" \
- -not -path "*.md" \
- -not -path "*.haml" \
- -not -path "*/Gemfile*" \
- -not -path '*/.bundle*' \
- -not -path '*/Makefile*' \
- -print0 \
- | xargs -0 shellcheck --exclude=SC1071 --external-sources --
-fi