Skip to content

Commit

Permalink
v4.4.2
Browse files Browse the repository at this point in the history
=====================================================================

--- Bug Fixes ----------------------------

- fixed a bug which emerged from the latest version of github's
  actions/runner-images
  • Loading branch information
wrynegade committed May 10, 2024
1 parent 2ef2086 commit a945dae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion zsh/lib/config.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export \
source "$SCWRYPTS_ROOT/scwrypts.scwrypts.zsh" \
|| FAIL 69 'failed to set up scwrypts group; aborting'

SCWRYPTS_GROUPS=(scwrypts $(echo $SCWRYPTS_GROUPS | sed 's/\s\+/\n/g' | sort -u | grep -v '^scwrypts$'))

#####################################################################

Expand Down Expand Up @@ -88,5 +87,9 @@ done
done
}

#####################################################################

SCWRYPTS_GROUPS=(scwrypts $(echo $SCWRYPTS_GROUPS | sed 's/\s\+/\n/g' | sort -u | grep -v '^scwrypts$'))

#####################################################################
__SCWRYPT=1 # arbitrary; indicates currently inside a scwrypt
2 changes: 1 addition & 1 deletion zsh/lib/scwrypts/run.module.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ SCWRYPTS__GET_AVAILABLE_SCWRYPTS() {
local GROUP GROUP_PATH GROUP_COLOR LOOKUP_PIDS=()
{
echo 'NAME^TYPE^GROUP'
for GROUP in ${SCWRYPTS_GROUPS}
for GROUP in ${SCWRYPTS_GROUPS[@]}
do
GROUP_PATH=$(eval echo '$SCWRYPTS_ROOT__'$GROUP)
GROUP_COLOR=$(eval echo '$SCWRYPTS_COLOR__'$GROUP)
Expand Down
5 changes: 4 additions & 1 deletion zsh/lib/utils/io.fzf.zsh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
FZF() {
[ $CI ] && FAIL 1 'currently in CI, but FZF requires user input'
[ $CI ] && {
DEBUG "invoked FZF with $@"
FAIL 1 'currently in CI, but FZF requires user input'
}

local FZF_ARGS=()

Expand Down

0 comments on commit a945dae

Please sign in to comment.