mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
treewide: fix typos
Found via `codespell -q 3 -S "*.patch,*.po" -L acount,afile,distroname,parm,serie,synopsys`
This commit is contained in:
@@ -4,7 +4,7 @@ set -e
|
||||
BIN=$(readlink -f $(dirname $0))
|
||||
|
||||
if git rev-parse --is-inside-work-tree &>/dev/null; then
|
||||
echo "Don't run this script inside a git reppository!"
|
||||
echo "Don't run this script inside a git repository!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
@@ -87,7 +87,7 @@ for SOURCE_PACKAGE in $(find "${SOURCES}/" -mindepth 1 -type d); do
|
||||
CUR_PACKAGE_FILE=$(basename "${PACKAGE_SOURCE_FILE}")
|
||||
|
||||
for FILE in $(find "${SOURCE_PACKAGE}/" -type f); do
|
||||
# don't test auxilliary files
|
||||
# don't test auxiliary files
|
||||
if [[ "${FILE}" = *.url ]] || [[ "${FILE}" = *.sha256 ]]; then
|
||||
continue
|
||||
fi
|
||||
|
||||
@@ -108,7 +108,7 @@ else:
|
||||
for event in events:
|
||||
slotn[event.slot] = 0
|
||||
|
||||
# Acumulate information in this hash - meh
|
||||
# Accumulate information in this hash - meh
|
||||
data = {"previous_status": None, "isactive": False, "statuses": {}}
|
||||
for status in ALL_STATUSES:
|
||||
data["statuses"][status] = {"enabled": False, "count": 0, "start": 0.0, "total": 0.0}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
# This performs an automated scan with corrections to the packages feed to
|
||||
# follow certain coding standards used in the project. Corrections are grouped
|
||||
# by the subdirectory within the packages feed, and then commited.
|
||||
# by the subdirectory within the packages feed, and then committed.
|
||||
|
||||
# Corrections made:
|
||||
# PKG_VAR="$PKG_VAR stuff" -> PKG_VAR+=" stuff"
|
||||
|
||||
@@ -100,7 +100,7 @@ check_for_update() {
|
||||
|
||||
# compare upstream with local version
|
||||
if [ "${PKG_VERSION}" != "${upstream_latest_commit##*/}" ]; then
|
||||
# get upstream tag informations
|
||||
# get upstream tag information
|
||||
if [ "${upstream_latest_tag}" != "null" ]; then
|
||||
tag=" | TAG: ${upstream_latest_tag} (${upstream_latest_tag_date%T*})"
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user