diff options
author | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-09-09 14:53:53 -0700 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-09-14 04:46:49 +0000 |
commit | d0a1775369fc8ff6d9b6197a38b93c7567823f96 (patch) | |
tree | 9ee97eab538c2fd94d721a0e36a3656535232dcf /Meta/serenity.sh | |
parent | 63c727a4a3414812aa1df50e700bda713f4039a4 (diff) | |
download | serenity-d0a1775369fc8ff6d9b6197a38b93c7567823f96.zip |
Everywhere: Fix a variety of typos
Spelling fixes found by `codespell`.
Diffstat (limited to 'Meta/serenity.sh')
-rwxr-xr-x | Meta/serenity.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/serenity.sh b/Meta/serenity.sh index 764d1fad45..ed0d458668 100755 --- a/Meta/serenity.sh +++ b/Meta/serenity.sh @@ -259,7 +259,7 @@ build_target() { cmake -S "$SERENITY_SOURCE_DIR/Meta/Lagom" -B "$BUILD_DIR" -DBUILD_LAGOM=ON fi - # Get either the environement MAKEJOBS or all processors via CMake + # Get either the environment MAKEJOBS or all processors via CMake [ -z "$MAKEJOBS" ] && MAKEJOBS=$(cmake -P "$SERENITY_SOURCE_DIR/Meta/CMake/processor-count.cmake" 2>&1) # With zero args, we are doing a standard "build" |