Skip to content

Commit b566e15

Browse files
authored
Merge pull request #23 from ipfs/fix-bash-bug
fix: small bash bug
2 parents 173ed0d + 35b1038 commit b566e15

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [1.2.1] - 2025-03-03
11+
12+
### Fixed
13+
14+
- Fix bash bug where the debug logging was not being set correctly.
15+
1016
## [1.2.0] - 2025-03-03
1117

1218
### Added

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ runs:
222222
exit 1
223223
fi
224224
225-
if [ -n "${ACTIONS_RUNNER_DEBUG}" || $attempt -ge 2 ]; then
225+
if [[ -n "${ACTIONS_RUNNER_DEBUG}" || $attempt -ge 2 ]]; then
226226
export GOLOG_LOG_LEVEL='debug'
227227
fi
228228

0 commit comments

Comments
 (0)