Skip to content

Commit

Permalink
Fix codacy issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
slav-at-attachix committed Nov 18, 2021
1 parent ece83df commit fd18ccc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Tools/ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -ex # exit with nonzero exit code if anything fails

# Build times benefit from parallel building
export MAKE_PARALLEL="make -j`nproc`"
export MAKE_PARALLEL="make -j$(nproc)"

cd "$SMING_HOME"
source "Arch/$SMING_ARCH/Tools/ci/build.setup.sh"
Expand Down
4 changes: 2 additions & 2 deletions Tools/ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# appveyor-specific
export PYTHON=$HOME/venv3.9/bin/python
export ESP32_PYTHON_PATH=$HOME/venv3.9/bin
source $HOME/venv3.9/bin/activate
source "$HOME/venv3.9/bin/activate"

# Install requested toolchains
$SMING_HOME/../Tools/install.sh $@
"$SMING_HOME/../Tools/install.sh" $@

0 comments on commit fd18ccc

Please sign in to comment.