Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Santarh committed Mar 27, 2024
1 parent df0497a commit cdf10f2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/create-unitypackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ jobs:
- name: Run Editor Tests
id: run-edit-mode-tests
run: |
echo "Run Editor Tests..."
# RunEditModeTests の実行の結果、終了コードが 0 でない場合でもテストの結果を表示したいので set +e して一時的に回避する
set +e
"${{ needs.detect-unity-version.outputs.unity-editor-executable }}" \
-batchmode \
Expand All @@ -72,9 +74,10 @@ jobs:
RET=$?
set -e
echo "TestRunnerLog:"
cat output.log | sed -n -E "s/^\[\[TestRunnerLog\]\] //p" | echo
if [${RET} -eq 0]; then
if [ ${RET} -eq 0 ]; then
echo "Test succeeded."
exit 0
else
Expand Down

0 comments on commit cdf10f2

Please sign in to comment.