Skip to content

Commit a8a4aef

Browse files
committed
💚 Forgot the set +e
1 parent c1a0440 commit a8a4aef

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/actions/sync-uv/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ runs:
3333
cmd_args=("uv" "sync")
3434
3535
# groups
36+
set +e
3637
if [ -n "${{ inputs.groups }}" ]; then
3738
IFS=',' read -ra GROUPS <<< "${{ inputs.groups }}"
3839
for group in "${GROUPS[@]}"; do
@@ -42,9 +43,11 @@ runs:
4243
fi
4344
done
4445
fi
46+
set -e
4547
echo "Groups: ${GROUPS[*]}"
4648
4749
# extras
50+
set +e
4851
if [ -n "${{ inputs.extras }}" ]; then
4952
IFS=',' read -ra EXTRAS <<< "${{ inputs.extras }}"
5053
for extra in "${EXTRAS[@]}"; do
@@ -54,6 +57,7 @@ runs:
5457
fi
5558
done
5659
fi
60+
set -e
5761
echo "Extras: ${EXTRAS[*]}"
5862
5963
echo "Executing: ${cmd_args[*]}"

0 commit comments

Comments
 (0)