|
27 | 27 |
|
28 | 28 | echo"Fetch tags for lib/SDL, otherwise lvgl_micropython's make.py script can't checkout a specific tag..." |
29 | 29 | pushd"$codebasedir"/lvgl_micropython/lib/SDL |
30 | | -git fetch --unshallow origin |
| 30 | +git fetch --unshallow origin2>/dev/null# will give error if already done |
31 | 31 | # Or fetch all refs without unshallowing (keeps it shallow but adds refs) |
32 | | -git fetch origin'refs/*:refs/*' |
| 32 | +git fetch origin'refs/*:refs/*'>/dev/null# huge list that pollutes the build output |
33 | 33 | popd |
34 | 34 |
|
35 | 35 | echo"Check need to add esp32-camera..." |
|
43 | 43 | fi |
44 | 44 |
|
45 | 45 | echo"Check need to add asyncio..." |
46 | | -manifile="$codebasedir"/lib/micropython/ports/unix/variants/manifest.py |
| 46 | +manifile="$codebasedir"/lvgl_micropython/lib/micropython/ports/unix/variants/manifest.py |
47 | 47 | if! grep asyncio"$manifile";then |
48 | 48 | echo"Adding asyncio to$manifile" |
49 | 49 | echo'include("$(MPY_DIR)/extmod/asyncio") # needed to have asyncio, which is used by aiohttp, which has used by websockets'>>"$manifile" |
|