From ae01ef5aba4781ecddc1f0fde97ddde2e361e2fd Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Tue, 5 Dec 2017 17:24:27 -0800 Subject: [PATCH 1/4] [package] Exclude markdown files from 'powershell.AppDir' folder --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 81cc91c7f1a..b14dd38a080 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,9 +39,10 @@ install: script: - pwsh -File tools/travis.ps1 # spellcheck + # Ignore 'powershell.AppDir' folder from AppImage creation # Ignore publish folders because they have 3rd party files - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then - mdspell '**/*.md' '!**/publish/**/*.md' --ignore-numbers --ignore-acronyms --report; + mdspell '**/*.md' '!**/powershell.AppDir/**/*.md' '!**/publish/**/*.md' --ignore-numbers --ignore-acronyms --report; fi after_failure: From 209554d062fca6223ebb7dc8f06f72788b4e0e6c Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Wed, 6 Dec 2017 09:23:47 -0800 Subject: [PATCH 2/4] Another attempt to fix spelling check --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b14dd38a080..760b31262e3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,7 +42,7 @@ script: # Ignore 'powershell.AppDir' folder from AppImage creation # Ignore publish folders because they have 3rd party files - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then - mdspell '**/*.md' '!**/powershell.AppDir/**/*.md' '!**/publish/**/*.md' --ignore-numbers --ignore-acronyms --report; + mdspell '**/*.md' '!**/powershell.AppDir/**/*.md' '!**/Pester/**/*.md' --ignore-numbers --ignore-acronyms --report; fi after_failure: From 99e6b157e35c7a422743f50e27195443380bfaf5 Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Wed, 6 Dec 2017 09:27:51 -0800 Subject: [PATCH 3/4] [package] Update the comment --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 760b31262e3..8314b30d895 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,7 @@ script: - pwsh -File tools/travis.ps1 # spellcheck # Ignore 'powershell.AppDir' folder from AppImage creation - # Ignore publish folders because they have 3rd party files + # Ignore 'Pester' folder because it's third party - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then mdspell '**/*.md' '!**/powershell.AppDir/**/*.md' '!**/Pester/**/*.md' --ignore-numbers --ignore-acronyms --report; fi From c7663a9fe8bb93264005ea3b407b19aac0a63f39 Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Wed, 6 Dec 2017 09:35:03 -0800 Subject: [PATCH 4/4] [package] Attemp to remove unneeded pattern --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8314b30d895..0126c52d6e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,10 +39,9 @@ install: script: - pwsh -File tools/travis.ps1 # spellcheck - # Ignore 'powershell.AppDir' folder from AppImage creation # Ignore 'Pester' folder because it's third party - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then - mdspell '**/*.md' '!**/powershell.AppDir/**/*.md' '!**/Pester/**/*.md' --ignore-numbers --ignore-acronyms --report; + mdspell '**/*.md' '!**/Pester/**/*.md' --ignore-numbers --ignore-acronyms --report; fi after_failure: