Skip to content

Commit

Permalink
Fixing Codacy Static Code Analysis again
Browse files Browse the repository at this point in the history
  • Loading branch information
berhoel committed Sep 22, 2024
1 parent 39bf1c7 commit 32cdb63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sming/Arch/Esp32/Tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ case $DIST in
_OK=1
_COMMANDS=(dfu-util bison flex gperf)
for _COMMAND in "${_COMMANDS[@]}"; do
if ! [ -x "$(command -v \"${_COMMAND}\")" ]; then
if ! [ -x $(command -v "${_COMMAND}") ]; then
_OK=0
echo "Install programm ${_COMMAND}"
fi
Expand Down
2 changes: 1 addition & 1 deletion Tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ else
wget \
)
for _TOOL in "${_REQUIRED_TOOLS[@]}"; do
if ! [ -x "$(command -v \"${_TOOL}\")" ]; then
if ! [ -x $(command -v "${_TOOL}") ]; then
_OK=0
echo "Install required tool ${_TOOL}"
fi
Expand Down

0 comments on commit 32cdb63

Please sign in to comment.