Skip to content

Commit a945dae

Browse files
committed
v4.4.2
===================================================================== --- Bug Fixes ---------------------------- - fixed a bug which emerged from the latest version of github's actions/runner-images
1 parent 2ef2086 commit a945dae

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

zsh/lib/config.zsh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ export \
5656
source "$SCWRYPTS_ROOT/scwrypts.scwrypts.zsh" \
5757
|| FAIL 69 'failed to set up scwrypts group; aborting'
5858

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

6160
#####################################################################
6261

@@ -88,5 +87,9 @@ done
8887
done
8988
}
9089

90+
#####################################################################
91+
92+
SCWRYPTS_GROUPS=(scwrypts $(echo $SCWRYPTS_GROUPS | sed 's/\s\+/\n/g' | sort -u | grep -v '^scwrypts$'))
93+
9194
#####################################################################
9295
__SCWRYPT=1 # arbitrary; indicates currently inside a scwrypt

zsh/lib/scwrypts/run.module.zsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ SCWRYPTS__GET_AVAILABLE_SCWRYPTS() {
1212
local GROUP GROUP_PATH GROUP_COLOR LOOKUP_PIDS=()
1313
{
1414
echo 'NAME^TYPE^GROUP'
15-
for GROUP in ${SCWRYPTS_GROUPS}
15+
for GROUP in ${SCWRYPTS_GROUPS[@]}
1616
do
1717
GROUP_PATH=$(eval echo '$SCWRYPTS_ROOT__'$GROUP)
1818
GROUP_COLOR=$(eval echo '$SCWRYPTS_COLOR__'$GROUP)

zsh/lib/utils/io.fzf.zsh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
FZF() {
2-
[ $CI ] && FAIL 1 'currently in CI, but FZF requires user input'
2+
[ $CI ] && {
3+
DEBUG "invoked FZF with $@"
4+
FAIL 1 'currently in CI, but FZF requires user input'
5+
}
36

47
local FZF_ARGS=()
58

0 commit comments

Comments
 (0)