Skip to content

Commit da0ce72

Browse files
committed
workflow : replace sed with cp
1 parent 8cd4ac1 commit da0ce72

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/non-release-build_v3.0.0.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,9 @@ jobs:
100100

101101
# https://github.com/avinabmalla/ESP32_BleSerial/issues/15
102102
- name: Patch ESP32_BleSerial BLECharacteristic
103-
run: sed -i 's|std::string value = pCharacteristic->getValue();|String value = pCharacteristic->getValue();|g' /home/runner/Arduino/libraries/ESP32_BleSerial/src/BleSerial.cpp
104-
105-
- name: Enable external libs
106-
run: arduino-cli config set library.enable_unsafe_install true
103+
run: |
104+
cd Firmware/RTK_Everywhere/Patch/
105+
cp BleSerial.cpp /home/runner/Arduino/libraries/ESP32_BleSerial/src/BleSerial.cpp
107106
108107
- name: Setup Python
109108
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)