Skip to content

Commit e3a746a

Browse files
committed
Tweak debugging.
1 parent a722a85 commit e3a746a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: action.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,12 @@ runs:
164164
if: inputs.parallel-finished == 'true'
165165
shell: ${{ startsWith(runner.os, 'Windows') && 'pwsh' || 'bash' }}
166166
run: |
167-
if [ ! -f coveralls ]; then
167+
if [ ! -f ~/bin/coveralls ]; then
168168
echo "Coveralls binary not found."
169169
[ "${{ inputs.fail-on-error }}" == "false" ] && exit 0
170170
exit 1
171171
fi
172-
coveralls done \
172+
~/bin/coveralls done \
173173
${{ inputs.debug == 'true' && '--debug' || '' }} \
174174
${{ inputs.measure == 'true' && '--measure' || '' }} \
175175
${{ inputs.fail-on-error == 'false' && '--no-fail' || '' }}
@@ -187,12 +187,12 @@ runs:
187187
if: inputs.parallel-finished != 'true'
188188
shell: ${{ startsWith(runner.os, 'Windows') && 'pwsh' || 'bash' }}
189189
run: |
190-
if [ ! -f coveralls ]; then
190+
if [ ! -f ~/bin/coveralls ]; then
191191
echo "Coveralls binary not found."
192192
[ "${{ inputs.fail-on-error }}" == "false" ] && exit 0
193193
exit 1
194194
fi
195-
coveralls report \
195+
~/bin/coveralls report \
196196
${{ inputs.debug == 'true' && '--debug' || '' }} \
197197
${{ inputs.measure == 'true' && '--measure' || '' }} \
198198
${{ inputs.fail-on-error == 'false' && '--no-fail' || '' }} \

0 commit comments

Comments
 (0)