Skip to content

Commit ed13eea

Browse files
committed
fix switch workflow
1 parent 125395a commit ed13eea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/switch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- name: Configure
1313
run: |
14-
. /opt/devkitpro/switchvars.sh \
15-
mkdir _build && cd _build \
14+
. /opt/devkitpro/switchvars.sh
15+
mkdir _build && cd _build
1616
../configure --host=aarch64-none-elf \
1717
--prefix=switch-sdl2 \
1818
--disable-shared --enable-static \
@@ -22,9 +22,9 @@ jobs:
2222
--disable-filesystem \
2323
--enable-cpuinfo \
2424
--enable-pthreads \
25-
--enable-timers \
25+
--enable-timers \
2626
--enable-video
2727
- name: Build
28-
run: make
28+
run: make -C _build
2929
- name: install
3030
run: make -C _build install

0 commit comments

Comments
 (0)