From 0d5e6f356e7f4a846af0c1129b531b62c8d177d2 Mon Sep 17 00:00:00 2001 From: Peter Ammon Date: Thu, 24 Oct 2024 20:25:22 -0700 Subject: [PATCH] Correct spelling of "courtesy" --- build_tools/make_pkg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_tools/make_pkg.sh b/build_tools/make_pkg.sh index a6ee416f0..6f70b63db 100755 --- a/build_tools/make_pkg.sh +++ b/build_tools/make_pkg.sh @@ -142,7 +142,7 @@ fi (cd "$PKGDIR/build_arm64" && env $ARM64_DEPLOY_TARGET make -j 12 fish_macapp) (cd "$PKGDIR/build_x86_64" && env $X86_64_DEPLOY_TARGET make -j 12 fish_macapp) -# Make the app's /usr/local/bin binaries universal. Note fish.app/Contents/MacOS/fish already is, courtsey of CMake. +# Make the app's /usr/local/bin binaries universal. Note fish.app/Contents/MacOS/fish already is, courtesy of CMake. cd "$PKGDIR/build_arm64" for FILE in fish.app/Contents/Resources/base/usr/local/bin/*; do X86_FILE="$PKGDIR/build_x86_64/fish.app/Contents/Resources/base/usr/local/bin/$(basename $FILE)"