From 6aba11d0be5215adc61e3adc1594335fc9534037 Mon Sep 17 00:00:00 2001 From: yage Date: Tue, 14 May 2024 12:14:39 -0600 Subject: [PATCH] v4.4.3 ===================================================================== --- Bug Fixes ---------------------------- - fixed a(nother) bug which emerged from the latest version of github's actions/runner-images; zx is now forcibly managed by the runner, so install scripts must be skipped in CI --- zsh/lib/scwrypts/virtualenv.module.zsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zsh/lib/scwrypts/virtualenv.module.zsh b/zsh/lib/scwrypts/virtualenv.module.zsh index 5932cdb..4e7275e 100644 --- a/zsh/lib/scwrypts/virtualenv.module.zsh +++ b/zsh/lib/scwrypts/virtualenv.module.zsh @@ -161,6 +161,8 @@ ACTIVATE_VIRTUALENV__scwrypts__zx() { UPDATE_VIRTUALENV__scwrypts__zx() { local NPM_INSTALL_ARGS=() + [ $CI ] && NPM_INSTALL_ARGS+=(--ignore-scripts) + cd "$SCWRYPTS_ROOT__scwrypts/zx" npm install ${NPM_INSTALL_ARGS[@]} }