Skip to content

Commit 1c0cd2b

Browse files
committed
CYGWIN_NOWINPATH needs a -login shell after all
1 parent 3b6d86d commit 1c0cd2b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/testing.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ jobs:
342342
CHERE_INVOKING: 1
343343
defaults:
344344
run:
345-
shell: C:\cygwin\bin\bash.exe -eo igncr '{0}'
345+
shell: C:\cygwin\bin\bash.exe -leo igncr '{0}'
346346
steps:
347347
- name: Save Windows git location for the PATH
348348
shell: pwsh
@@ -371,8 +371,8 @@ jobs:
371371
make -k -j "$(getconf _NPROCESSORS_ONLN)" Q=
372372
- name: Install using Make
373373
if: matrix.arch == 'x86'
374-
run: | # `/usr/local/bin` is not in the PATH but `/usr/bin` is, so we install to `/usr`.
375-
make install PREFIX=/usr Q=
374+
run: |
375+
make install Q=
376376
type rgbasm rgblink rgbfix rgbgfx
377377
man -w 1 rgbasm rgblink rgbfix rgbgfx
378378
- name: Build using CMake
@@ -382,8 +382,8 @@ jobs:
382382
cmake --build build -- -k 0
383383
- name: Install using CMake
384384
if: matrix.arch == 'x86_64'
385-
run: | # `/usr/local/bin` is not in the PATH but `/usr/bin` is, so we install to `/usr`.
386-
cmake --install build --prefix /usr --verbose
385+
run: |
386+
cmake --install build --verbose
387387
type rgbasm rgblink rgbfix rgbgfx
388388
man -w 1 rgbasm rgblink rgbfix rgbgfx
389389
- name: Compute test dependency cache params

0 commit comments

Comments
 (0)