diff --git a/.cspell/nextcloud.txt b/.cspell/nextcloud.txt index 0880b4e9..a95264a3 100644 --- a/.cspell/nextcloud.txt +++ b/.cspell/nextcloud.txt @@ -37,9 +37,6 @@ publicpreview reshares resharing rgdnvw -r'sharebymail -r'updatenotification -r'uppush shareapi sharebymail sharee diff --git a/tool/update-cspell-dictionaries.sh b/tool/update-cspell-dictionaries.sh index 18dd4e78..623a57d5 100755 --- a/tool/update-cspell-dictionaries.sh +++ b/tool/update-cspell-dictionaries.sh @@ -4,5 +4,5 @@ cd "$(dirname "$0")/.." for file in .cspell/*; do rm "$file" - cspell lint --quiet --unique --words-only . | tr '[:upper:]' '[:lower:]' | sort -f | uniq > "$file" || true + cspell lint --quiet --unique --words-only . | tr '[:upper:]' '[:lower:]' | sed "s/^r'//" | sort -f | uniq > "$file" || true done