diff options
| author | hathach <[email protected]> | 2022-11-06 14:56:05 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2022-11-06 14:56:05 +0700 |
| commit | b92015544490ed6fd8891db59c4cb88365f0f137 (patch) | |
| tree | f684c1b1a89798ff214c670a2d60da60aa751c80 /.github/workflows/build_msp430.yml | |
| parent | fe7fca7abbea02b9f0ac8f53bf4ca1d1019c6e85 (diff) | |
minor clean up
Diffstat (limited to '.github/workflows/build_msp430.yml')
| -rw-r--r-- | .github/workflows/build_msp430.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/build_msp430.yml b/.github/workflows/build_msp430.yml index ea93f09a0..731febb03 100644 --- a/.github/workflows/build_msp430.yml +++ b/.github/workflows/build_msp430.yml @@ -61,7 +61,8 @@ jobs: - name: Linker Map run: | pip install linkermap/ - for ex in `ls -d examples/device/*/`; do \ - find ${ex} -name *.map -print -quit | \ - xargs -I % sh -c 'echo "::group::%"; linkermap -v %; echo "::endgroup::"'; \ + # find -quit to only print linkermap of 1 board per example + for ex in `ls -d examples/device/*/` + do + find ${ex} -name *.map -print -quit | xargs -I % sh -c 'echo "::group::%"; linkermap -v %; echo "::endgroup::"' done |
