Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
shallow clone to make installation faster
shallow clone (board and submodules) to make installation faster
  • Loading branch information
dimitre authored Aug 11, 2020
commit 299dc13be9c8ddcbea11ffaf01ce47da22fd6e49
4 changes: 2 additions & 2 deletions docs/arduino-ide/mac.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Installation instructions for Mac OS
```bash
mkdir -p ~/Documents/Arduino/hardware/espressif && \
cd ~/Documents/Arduino/hardware/espressif && \
git clone https://github.com/espressif/arduino-esp32.git esp32 && \
git clone https://github.com/espressif/arduino-esp32.git esp32 --depth 1 && \
cd esp32 && \
git submodule update --init --recursive && \
git submodule update --init --recursive --depth 1 && \
cd tools && \
python get.py
```
Expand Down