Compare commits

..

2 Commits

Author SHA1 Message Date
017d82abc5 fix(bin): path append quoting (#130) 2025-06-21 21:32:23 +03:00
github-actions[bot]
24ad4bf5b7 chore: update pre-commit hooks (#128)
Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com>
2025-06-19 13:10:14 +03:00
2 changed files with 2 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ repos:
- id: actionlint
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 40.57.0
rev: 40.61.2
hooks:
- id: renovate-config-validator

View File

@@ -39,6 +39,6 @@ for dir in "$@"; do
esac
# Append the directory to PATH.
export PATH="${PATH:+"$PATH:"}$dir"
export PATH="${PATH:+$PATH:}$dir"
[ "$VERBOSE" -eq 1 ] && echo "Appended '$dir' to PATH."
done