Skip to content

Commit a6ec410

Browse files
committed
wip
1 parent 08257a5 commit a6ec410

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/install-swift/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ runs:
77
- name: Install apt dependencies
88
shell: bash
99
run: |
10-
SUDO=$([[ $EUID -ne 0 ]] && echo sudo)
10+
SUDO=$(if [[ $EUID -ne 0 ]]; then echo sudo; fi)
1111
$SUDO apt-get -qq update
1212
$SUDO apt-get -qq -y install curl gpg binutils git unzip gnupg2 \
1313
libc6-dev libcurl4-openssl-dev libedit2 libgcc-13-dev libpython3-dev \

.github/workflows/build-esp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
example: [esp32-led-blink-sdk, esp32-led-strip-sdk]
20+
example: [esp32-led-blink-sdk] # esp32-led-strip-sdk
2121

2222
steps:
2323
- name: Checkout repo

0 commit comments

Comments
 (0)