upgradede to 1.4-release
This commit is contained in:
@@ -7,6 +7,8 @@ some features require user to have passwordless sudo rights
|
||||
|
||||
Literally the most schizophrenically overengineered thing I have ever made. idk why I did that
|
||||
|
||||
Total install size (discounting needed packages) is about 9GiB
|
||||
|
||||
## Quick start
|
||||
1. `mkdir ~/esp`
|
||||
2. `git clone --recursive https://github.com/PrincessPi3/esp-idf-tools.git ~/esp/esp-idf-tools`
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
espidf=$(du -b -d 0 ~/esp/esp-idf | awk '{print $1}')
|
||||
espdevkits=$(du -b -d 0 ~/esp/esp-dev-kits | awk '{print $1}')
|
||||
espidftools=$(du -b -d 0 ~/esp/esp-idf-tools | awk '{print $1}')
|
||||
custom_bin=$(du -b -d 0 ~/esp/.custom_bin | awk '{print $1}')
|
||||
espressif=$(du -b -d 0 ~/.espressif | awk '{print $1}')
|
||||
|
||||
bytes=$(($espidf + $espdevkits + $espidftools + $custom_bin + $espressif))
|
||||
human=$(numfmt --to=iec-i --suffix=B $bytes)
|
||||
|
||||
echo "Total size of ESP-IDF related directories: $bytes bytes ($human)"
|
||||
+1
-1
@@ -1 +1 @@
|
||||
1.3-dev-0
|
||||
1.4-release
|
||||
Reference in New Issue
Block a user