Skip to content

Commit f656bbb

Browse files
committed
Modify code per linter.
1 parent a6db77a commit f656bbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ runs:
9898
run: |
9999
mkdir -p ~/bin/
100100
cd ~/bin/
101-
if [ $COVERAGE_REPORTER_VERSION == "latest" ]
101+
if [ $COVERAGE_REPORTER_VERSION = "latest" ]
102102
then
103103
asset_path=latest/download
104104
else
@@ -114,7 +114,7 @@ runs:
114114
# Verify the downloaded binary
115115
if ! grep coveralls-linux.tar.gz coveralls-checksums.txt | sha256sum --check; then
116116
echo "Checksum verification failed."
117-
[ "${{ inputs.fail-on-error }}" == "false" ] && exit 0
117+
[ "${{ inputs.fail-on-error }}" = "false" ] && exit 0
118118
exit 1
119119
fi
120120
tar -xzf coveralls-linux.tar.gz

0 commit comments

Comments
 (0)