From 7853dc185c1e1074023cb65f3c14f6e5bdc48ccf Mon Sep 17 00:00:00 2001 From: yage Date: Tue, 16 Apr 2024 09:49:58 -0600 Subject: [PATCH] added missing semicolon --- config/dotwryn.env.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/dotwryn.env.zsh b/config/dotwryn.env.zsh index 86ad4d1..742fc6a 100644 --- a/config/dotwryn.env.zsh +++ b/config/dotwryn.env.zsh @@ -11,7 +11,8 @@ LOAD_ZSH_UTILS() { && [ $SCWRYPTS_ROOT ] \ && [ -d "$SCWRYPTS_ROOT" ] \ && source "$(scwrypts --root)/zsh/lib/utils/utils.module.zsh" \ - && export DOTWRYN_UTILS_LOADED=1 + && export DOTWRYN_UTILS_LOADED=1 \ + ; } [ $DOTWRYN_UTILS_LOADED ] || RELOAD_ZSH_UTILS