Skip to content

Commit e6c3488

Browse files
typo 2
1 parent 71f38c3 commit e6c3488

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/download-pre-built-deps/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@ runs:
4949
computedHash=$(sha256sum "$downloadFilename" | awk '{print $1}')
5050
destDir=/tmp/deps
5151
fi
52-
echo 👀 Check Hash"...
52+
echo 👀 Check Hash...
5353
if [[ "$computedHash" == "$downloadHash" ]]; then
5454
mkdir "$destDir"
5555
tar -xzf "$downloadFilename" -C "$destDir"
5656
if [[ ${{ inputs.os }} != 'windows' ]]; then
5757
chmod +x "$destDir"/bin/*
5858
fi
59-
echo ✅ Hash check passed."
59+
echo ✅ Hash check passed.
6060
echo "cmake-args="-DUSE_PRE_BUILT_DEPS=ON -DPRE_BUILT_DEPS_DIR=$destDir"" >> $GITHUB_OUTPUT
6161
else
62-
echo ❌ Hash check failed."
62+
echo ❌ Hash check failed.
6363
echo "cmake-args=" >> $GITHUB_OUTPUT
6464
fi

0 commit comments

Comments
 (0)