modified: .gitlab-ci.yml

modified:   duplicate.sh
This commit is contained in:
Lukáš Krupčík 2018-10-02 15:09:11 +02:00
parent 4d4deace76
commit 5c68246dc3
2 changed files with 2 additions and 9 deletions

View File

@ -21,13 +21,6 @@ other_files:
- find . -type f -not -path "*.git*" ! -name "*.eb" ! -name "*.patch*" ! -name ".git*" ! -name "LICENSE" ! -name "*.md" ! -name "*.sh" - find . -type f -not -path "*.git*" ! -name "*.eb" ! -name "*.patch*" ! -name ".git*" ! -name "LICENSE" ! -name "*.md" ! -name "*.sh"
- find . -type f -not -path "*.git*" ! -name "*.eb" ! -name "*.patch*" ! -name ".git*" ! -name "LICENSE" ! -name "*.md" ! -name "*.sh" -exec false {} + - find . -type f -not -path "*.git*" ! -name "*.eb" ! -name "*.patch*" ! -name ".git*" ! -name "LICENSE" ! -name "*.md" ! -name "*.sh" -exec false {} +
spell_check:
stage: test
image: davidhrbac/docker-npmcheck:latest
script:
- npm i markdown-spellcheck -g
- mdspell '*.md' -rns --en-us
shellcheck: shellcheck:
stage: test stage: test
image: davidhrbac/docker-shellcheck:latest image: davidhrbac/docker-shellcheck:latest

View File

@ -23,8 +23,8 @@ echo ""
echo "Checking..." echo "Checking..."
for x in `cat develop`; do for x in `cat develop`; do
X=$(echo $x | cut -d ';' -f 1) X=$(echo "$x" | cut -d ';' -f 1)
Xname=$(echo $x | cut -d ';' -f 2) Xname=$(echo "$x" | cut -d ';' -f 2)
for y in `cat it4i | cut -d ';' -f 1`; do for y in `cat it4i | cut -d ';' -f 1`; do
if [ "$X" = "$y" ]; then if [ "$X" = "$y" ]; then
printf "$format" "${red}$X${end}" "${red}$Xname${end}" printf "$format" "${red}$X${end}" "${red}$Xname${end}"