zshrc: Fix typo
This commit is contained in:
parent
d90aa96a03
commit
2408c0965c
1 changed files with 1 additions and 1 deletions
2
zshrc
2
zshrc
|
@ -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))"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue