1
1
Fork 0

zshrc: Fix typo

This commit is contained in:
Jonathan Schleifer 2022-11-27 23:10:24 +00:00
parent d90aa96a03
commit 2408c0965c

2
zshrc
View file

@ -223,7 +223,7 @@ __has_command gpg2 && alias gpg=gpg2
if [ "$(uname -s)" = "Darwin" ]; then if [ "$(uname -s)" = "Darwin" ]; then
export MAKEFLAGS="-j$(($(sysctl -n machdep.cpu.thread_count) * 2))" export MAKEFLAGS="-j$(($(sysctl -n machdep.cpu.thread_count) * 2))"
elif [ "$(uname -s)" = "NetBSD"; then elif [ "$(uname -s)" = "NetBSD" ]; then
export MAKEFLAGS="-j$(($(sysctl -n hw.ncpu) * 2))" export MAKEFLAGS="-j$(($(sysctl -n hw.ncpu) * 2))"
elif __has_command nproc; then elif __has_command nproc; then
export MAKEFLAGS="-j$(($(nproc) * 2))" export MAKEFLAGS="-j$(($(nproc) * 2))"