chore: update dictionary - #260
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Base PullRequest
default branch (https://github.com/electrocucaracha/pkg-mgr_scripts/tree/master)
Command results
Details:
add path
sudo apt-get update
Get:1 file:/etc/apt/apt-mirrors.txt Mirrorlist [144 B] Hit:6 https://packages.microsoft.com/repos/azure-cli noble InRelease Get:7 https://packages.microsoft.com/ubuntu/24.04/prod noble InRelease [3600 B] Get:8 https://dl.google.com/linux/chrome-stable/deb stable InRelease [2548 B] Get:9 https://packages.microsoft.com/ubuntu/24.04/prod noble/main amd64 Packages [261 kB] Hit:2 http://azure.archive.ubuntu.com/ubuntu noble InRelease Get:3 http://azure.archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB] Get:5 http://azure.archive.ubuntu.com/ubuntu noble-security InRelease [126 kB] Get:10 https://packages.microsoft.com/ubuntu/24.04/prod noble/main armhf Packages [11.7 kB] Get:11 https://packages.microsoft.com/ubuntu/24.04/prod noble/main arm64 Packages [227 kB] Get:12 https://dl.google.com/linux/chrome-stable/deb stable/main amd64 Packages [1411 B] Get:13 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1154 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu noble-updates/main Translation-en [278 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 Components [180 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [1680 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe Translation-en [334 kB] Get:18 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 Components [388 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [1367 kB] Get:20 http://azure.archive.ubuntu.com/ubuntu noble-updates/restricted Translation-en [308 kB] Get:21 http://azure.archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [45.4 kB] Get:22 http://azure.archive.ubuntu.com/ubuntu noble-updates/multiverse Translation-en [12.3 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Components [940 B] Get:24 http://azure.archive.ubuntu.com/ubuntu noble-backports/main amd64 Components [5764 B] Get:25 http://azure.archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [31.0 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu noble-backports/universe amd64 Components [12.6 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu noble-security/main amd64 Packages [897 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu noble-security/main Translation-en [198 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu noble-security/main amd64 Components [46.3 kB] Get:30 http://azure.archive.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1199 kB] Get:31 http://azure.archive.ubuntu.com/ubuntu noble-security/universe Translation-en [239 kB] Get:32 http://azure.archive.ubuntu.com/ubuntu noble-security/universe amd64 Components [76.3 kB] Get:33 http://azure.archive.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [1273 kB] Get:34 http://azure.archive.ubuntu.com/ubuntu noble-security/restricted Translation-en [290 kB] Get:35 http://azure.archive.ubuntu.com/ubuntu noble-security/multiverse amd64 Packages [40.3 kB] Get:36 http://azure.archive.ubuntu.com/ubuntu noble-security/multiverse Translation-en [10.6 kB] Fetched 11.0 MB in 1s (7861 kB/s) Reading package lists...sudo apt-get -y --no-install-recommends install aspell aspell-en
stderr:
pip install pyspelling
sort --ignore-case --output=original.dic .github/.wordlist.txt
echo "" > .github/.wordlist.txt
# Remove leftovers
pyspelling -c .spellcheck.yml | sed '/^<.*>/d;/^!!!/d;/^--/d;/^Misspelled words:/d;/^$/d;/^Spelling check passed :)$/d' | sort --ignore-case | uniq --ignore-case | tee draft.dic
comm -12 --nocheck-order draft.dic original.dic > .github/.wordlist.txt
sort --ignore-case --output=.github/.wordlist.txt .github/.wordlist.txt
# Add missing words
pyspelling -c .spellcheck.yml | sed '/^<.*>/d;/^!!!/d;/^--/d;/^Misspelled words:/d;/^$/d;/^Spelling check passed :)$/d' | sort --ignore-case | uniq --ignore-case | tee --append .github/.wordlist.txt
sort --ignore-case --output=.github/.wordlist.txt .github/.wordlist.txt
Changed files
Changed file: