Skip to content

Commit 2946396

Browse files
authored
chore: made IFS variable more consistent
1 parent c133a41 commit 2946396

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
ACTIONLINT_VERSION: v1.7.7
8080
ACTIONLINT_ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.actionlint_all_changed_files }}
8181
run: |
82-
IFS=$' \t\n'; set -ux
82+
IFS=$' \n\t'; set -ux
8383
8484
if [[ "${GITHUB_EVENT_NAME}" == 'workflow_dispatch' ]]; then
8585
# Get files using globs.
@@ -126,7 +126,7 @@ jobs:
126126
# renovate: datasource=github-releases depName=lumaxis/shellcheck-problem-matchers
127127
SHELLCHECK_PROBLEM_MATCHERS_VERSION: v2.1.0
128128
run: |
129-
IFS=$' \t\n'; set -ux
129+
IFS=$' \n\t'; set -ux
130130
131131
if [[ "${GITHUB_EVENT_NAME}" == 'workflow_dispatch' ]]; then
132132
# Get files using globs.

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Check if tag is for a pre-release
4444
id: check-prerelease
4545
run: |
46-
IFS=$' \t\n'; set -ux
46+
IFS=$' \n\t'; set -ux
4747
4848
# Get clean version from the tag name
4949
version="${GITHUB_REF_NAME#v}"

0 commit comments

Comments
 (0)