Remove needless semi-colons

This commit is contained in:
2020-05-03 20:51:23 +01:00
parent b68d785236
commit d068f4418b
2 changed files with 2 additions and 2 deletions

2
zshenv
View File

@@ -4,7 +4,7 @@
# Enable ZSH profiling? # Enable ZSH profiling?
if [[ -n "$ZPROF" ]]; then if [[ -n "$ZPROF" ]]; then
zmodload zsh/zprof; zmodload zsh/zprof
fi fi
# Ensure values in path variable are unique # Ensure values in path variable are unique

2
zshrc
View File

@@ -6,7 +6,7 @@
# /etc to avoid /etc/zprofile messing up our carefully constructed PATH. So we # /etc to avoid /etc/zprofile messing up our carefully constructed PATH. So we
# need to manually load the other files we care about. # need to manually load the other files we care about.
if [[ "$OSTYPE" == "darwin"* ]] && [ -f "/etc/zshrc" ]; then if [[ "$OSTYPE" == "darwin"* ]] && [ -f "/etc/zshrc" ]; then
source "/etc/zshrc"; source "/etc/zshrc"
fi fi