We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00dc521 commit d81efaeCopy full SHA for d81efae
.github/workflows/test.main.kts
@@ -554,7 +554,7 @@ workflowWithCopyright(
554
)
555
runAfterSuccess(
556
name = "Test - /etc/wsl.conf should not exist",
557
- command = "[ ! -f /etc/wsl.conf ]"
+ command = "[ ! -f /etc/wsl.conf ] || { cat /etc/wsl.conf; false; }"
558
559
560
name = "Test - C: should be mounted at /mnt/c",
.github/workflows/test.yaml
@@ -992,7 +992,7 @@ jobs:
992
- id: 'step-4'
993
name: 'Test - /etc/wsl.conf should not exist'
994
shell: 'wsl-bash {0}'
995
- run: '[ ! -f /etc/wsl.conf ]'
+ run: '[ ! -f /etc/wsl.conf ] || { cat /etc/wsl.conf; false; }'
996
if: |-
997
always()
998
&& (steps.step-1.outcome == 'success')
0 commit comments