Skip to content

Commit 1e1ddc1

Browse files
authored
Fix conflicts
1 parent abdd82b commit 1e1ddc1

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/scripts/install-platformio-esp32.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ export PLATFORMIO_ESP32_PATH="$HOME/.platformio/packages/framework-arduinoespres
44
PLATFORMIO_ESP32_URL="https://github.com/platformio/platform-espressif32.git"
55

66
TOOLCHAIN_VERSION="8.4.0+2021r2-patch5"
7-
ESPTOOLPY_VERSION="1.40400.0"
8-
7+
ESPTOOLPY_VERSION="~1.40400.0"
98
ESPRESSIF_ORGANIZATION_NAME="espressif"
109

1110
echo "Installing Python Wheel ..."
@@ -41,12 +40,12 @@ replace_script+="data['packages']['tool-esptoolpy']['version']='$ESPTOOLPY_VERSI
4140
replace_script+="fp.seek(0);fp.truncate();json.dump(data, fp, indent=2);fp.close()"
4241
python -c "$replace_script"
4342

44-
if [ "$GITHUB_REPOSITORY" == "tasmota/arduino-esp32" ]; then
43+
if [ "$GITHUB_REPOSITORY" == "espressif/arduino-esp32" ]; then
4544
echo "Linking Core..."
4645
ln -s $GITHUB_WORKSPACE "$PLATFORMIO_ESP32_PATH"
4746
else
4847
echo "Cloning Core Repository ..."
49-
git clone --recursive https://github.com/tasmota/arduino-esp32.git "$PLATFORMIO_ESP32_PATH" > /dev/null 2>&1
48+
git clone --recursive https://github.com/espressif/arduino-esp32.git "$PLATFORMIO_ESP32_PATH" > /dev/null 2>&1
5049
fi
5150

5251
echo "PlatformIO for ESP32 has been installed"

0 commit comments

Comments
 (0)