diff --git a/pkgs/os-specific/bsd/freebsd/update.py b/pkgs/os-specific/bsd/freebsd/update.py index f6a7911e7e75..873dee6554d3 100755 --- a/pkgs/os-specific/bsd/freebsd/update.py +++ b/pkgs/os-specific/bsd/freebsd/update.py @@ -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`, which is used + # Extract the patch number from `RELEASE-p`, which is used # e.g. in the "releng" branches. m = _RELEASE_PATCH_PATTERN.match(fields["branch"]) if m is not None: diff --git a/pkgs/os-specific/bsd/setup-hook.sh b/pkgs/os-specific/bsd/setup-hook.sh index 08dfdd4b14b6..faf3f1974947 100644 --- a/pkgs/os-specific/bsd/setup-hook.sh +++ b/pkgs/os-specific/bsd/setup-hook.sh @@ -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/{}" \;