File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ AR_USER="lucasssvaz"
29
29
30
30
# The full name of the repository
31
31
AR_REPO=" $AR_USER /arduino-esp32"
32
- IDF_REPO=" espressif /esp-idf"
32
+ IDF_REPO=" $AR_USER /esp-idf"
33
33
AR_LIBS_REPO=" $AR_USER /esp32-arduino-libs"
34
34
35
35
AR_REPO_URL=" https://github.com/$AR_REPO .git"
Original file line number Diff line number Diff line change 20
20
# esp32-arduino-libs
21
21
#
22
22
23
- if [ $LIBS_HAS_ASSET == " 0" ]; then
23
+ if [ $LIBS_HAS_ASSET == " 0" ] && [ $AR_HAS_COMMIT == " 0 " ] ; then
24
24
cd " $AR_ROOT "
25
25
mkdir -p dist
26
26
@@ -81,7 +81,10 @@ if [ $LIBS_HAS_ASSET == "0" ]; then
81
81
82
82
remote_checksum=$( sha256sum " $remote_file " | awk ' {print $1}' )
83
83
if [ " $local_checksum " != " $remote_checksum " ]; then
84
- echo " Checksum mismatch for downloaded file after retry. Deleting asset and exiting..."
84
+ echo " Checksum mismatch for downloaded file after retry"
85
+ echo " Local: $local_checksum "
86
+ echo " Remote: $remote_checksum "
87
+ echo " Deleting asset and exiting..."
85
88
if [ ` github_release_asset_delete " $AR_LIBS_REPO " " $LIBS_ASSET_ID " ` == " 0" ]; then
86
89
echo " ERROR: Failed to delete asset '$LIBS_ZIP_FILENAME '"
87
90
fi
You can’t perform that action at this time.
0 commit comments