pkgs/os-specific: fix typos

This commit is contained in:
Ben Siraphob
2025-09-01 18:11:58 -07:00
parent ed23526c32
commit 78f10f55a2
2 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ def query_version(work_dir: str) -> dict[str, typing.Any]:
fields["major"] = parsed.major
fields["minor"] = parsed.minor
# Extract the patch number from `RELAESE-p<patch>`, which is used
# Extract the patch number from `RELEASE-p<patch>`, which is used
# e.g. in the "releng" branches.
m = _RELEASE_PATCH_PATTERN.match(fields["branch"])
if m is not None:

View File

@@ -95,7 +95,7 @@ moveUsrDir() {
if [ -d "$prefix/usr" ]; then
# Didn't try using rsync yet because per
# https://unix.stackexchange.com/questions/127712/merging-folders-with-mv,
# it's not neessarily better.
# it's not necessarily better.
pushd "$prefix/usr"
find . -type d -exec mkdir -p "$out/{}" \;
find . \( -type f -o -type l \) -exec mv "{}" "$out/{}" \;