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/krd/tree/master)
Command results
Details:
add path
sudo apt-get update
Get:1 file:/etc/apt/apt-mirrors.txt Mirrorlist [142 B] Hit:2 http://azure.archive.ubuntu.com/ubuntu jammy InRelease Get:3 http://azure.archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] Hit:4 http://azure.archive.ubuntu.com/ubuntu jammy-backports InRelease Get:5 http://azure.archive.ubuntu.com/ubuntu jammy-security InRelease [110 kB] Get:6 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1608 kB] Get:7 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [303 kB] Get:8 http://azure.archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1826 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [310 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1070 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [244 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] Hit:14 https://ppa.launchpadcontent.net/ubuntu-toolchain-r/test/ubuntu jammy InRelease Get:15 http://azure.archive.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1388 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu jammy-security/main Translation-en [243 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1762 kB] Get:18 http://azure.archive.ubuntu.com/ubuntu jammy-security/restricted Translation-en [299 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [848 kB] Get:20 http://azure.archive.ubuntu.com/ubuntu jammy-security/universe Translation-en [162 kB] Get:21 https://packages.microsoft.com/ubuntu/22.04/prod jammy InRelease [3632 B] Get:22 https://packages.microsoft.com/ubuntu/22.04/prod jammy/main arm64 Packages [36.1 kB] Get:23 https://packages.microsoft.com/ubuntu/22.04/prod jammy/main amd64 Packages [142 kB] Get:24 https://packages.microsoft.com/ubuntu/22.04/prod jammy/main armhf Packages [12.7 kB] Fetched 10.5 MB in 2s (4869 kB/s) Reading package lists...
sudo apt-get -y --no-install-recommends install aspell aspell-en
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:
Repo | 📝 Issues | 🏬 Marketplace