From 08e0273130bb55a8cc4799ea7ced72f977cbcd36 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Wed, 27 Aug 2025 14:04:04 +0900 Subject: [PATCH] fix comma --- .github/workflows/create-unitypackage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-unitypackage.yml b/.github/workflows/create-unitypackage.yml index 65f062d51..cec71c23c 100644 --- a/.github/workflows/create-unitypackage.yml +++ b/.github/workflows/create-unitypackage.yml @@ -33,7 +33,7 @@ jobs: UNITY_VERSION=`cat ${PROJECT_VERSION_PATH} | sed -n -E "s/^m_EditorVersion:\s+//p" | head -n 1` UNITY_CHANGESET=`cat ${PROJECT_VERSION_PATH} | sed -n -E "s/^m_EditorVersionWithRevision:\s+\S+\s+\((\S+)\)/\1/p" | head -n 1` UNITY_EDITOR_EXECUTABLE=`"${UNITY_HUB}" -- --headless editors --installed | \ - sed -n -E "s/^${UNITY_VERSION} , installed at //p" | \ + sed -n -E "s/^${UNITY_VERSION} installed at //p" | \ head -n 1` if [ -z "${UNITY_EDITOR_EXECUTABLE}" ]; then