From fbd043b38a93147b035c2bdc5c9ebe59ea77d3c3 Mon Sep 17 00:00:00 2001 From: Takashi Mori Date: Fri, 29 Dec 2023 08:31:59 +0900 Subject: [PATCH] bug fixed for macos --- activate_app.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activate_app.bash b/activate_app.bash index 3f1d8dd..1a1dee1 100644 --- a/activate_app.bash +++ b/activate_app.bash @@ -40,7 +40,7 @@ then elif [ ${OS_TYPE} = "Darwin" ] then cd ${APP_DIRPATH} - APP_NAME=`find . -type f` + APP_NAME=`find ./Contents/MacOS -type f` ./${APP_NAME} else echo "ERROR: not supported os type: ${OS_TYPE}"