Skip to content

Commit 40c41d3

Browse files
committed
Removed debugging and fixed make command bug.
1 parent b2a6822 commit 40c41d3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

entrypoint.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ cmake -DPICO_BOARD="$BOARD_NAME" -S "$SOURCE_DIR" -B "$OUTPUT_DIR" -G "$MAKEFILE
9090

9191
if [ "$CMAKE_CONFIG_ONLY" = "false" ]; then
9292
echo "Building project..."
93-
echo "PWD: $(pwd)"
94-
make -j$(nproc)
93+
cd "$OUTPUT_DIR" && make -j$(nproc)
9594

9695
# Remove ignored build directories
9796
echo "Removing unnecessary build directories..."

0 commit comments

Comments
 (0)