fix actionlint/shellcheck: $@ -> $*

https://www.shellcheck.net/wiki/SC2145
This commit is contained in:
Ralf Vogler 2025-05-25 16:12:03 +02:00
parent 33227081f6
commit b4dcd0b8af
2 changed files with 5 additions and 5 deletions

View file

@ -28,8 +28,8 @@ jobs:
run: bunx howfat -d -p --reporter table --sort size-
- name: dep-size qnm (flat list as in node_modules)
run: |
emd() { echo "$@" | tee -a "$GITHUB_STEP_SUMMARY"; }
cmd() { echo "\$ $@" | tee -a "$GITHUB_STEP_SUMMARY"; "$@" | tee -a "$GITHUB_STEP_SUMMARY"; }
emd() { echo "$*" | tee -a "$GITHUB_STEP_SUMMARY"; }
cmd() { echo "\$ $*" | tee -a "$GITHUB_STEP_SUMMARY"; "$*" | tee -a "$GITHUB_STEP_SUMMARY"; }
emd '```console'
cmd npx --yes qnm doctor
emd '```'