Skip to content

Commit

Permalink
build: Fix linter findings
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealArthurDent committed Oct 5, 2024
1 parent 151a508 commit 3359041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/platformio-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
#!/bin/bash
cacheSizePip=0
if [ -d ${{ env.PIP_CACHE_FOLDER }} ]; then
cacheSizePip=$(echo $(du -s ${{ env.PIP_CACHE_FOLDER }}) | awk '{print $1}')
cacheSizePip=$(du -s ${{ env.PIP_CACHE_FOLDER }} | awk '{print $1}')
fi
cacheSizePlatformio=0
if [ -d ${{ env.PLATFORMIO_CACHE_FOLDER }} ]; then
Expand Down

0 comments on commit 3359041

Please sign in to comment.