Skip to content

Commit

Permalink
shallow clone to make installation faster (#4246)
Browse files Browse the repository at this point in the history
shallow clone (board and submodules) to make installation faster
  • Loading branch information
dimitre authored Oct 1, 2020
1 parent ee88c42 commit c917ed2
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit c917ed2

Please sign in to comment.