From 2732d8fee16aaefa4264f4926b1230562062a410 Mon Sep 17 00:00:00 2001 From: lexluo09 <39718951+lexluo09@users.noreply.github.com> Date: Tue, 15 Aug 2023 18:08:45 +0800 Subject: [PATCH] [fix](chat) add env bash to env.sh (#30) Co-authored-by: lexluo --- chat/core/src/main/python/bin/env.sh | 1 + launchers/chat/src/main/bin/env.sh | 1 + launchers/semantic/src/main/bin/env.sh | 1 + launchers/standalone/src/main/bin/env.sh | 1 + 4 files changed, 4 insertions(+) diff --git a/chat/core/src/main/python/bin/env.sh b/chat/core/src/main/python/bin/env.sh index 271d50b30..6c815b871 100644 --- a/chat/core/src/main/python/bin/env.sh +++ b/chat/core/src/main/python/bin/env.sh @@ -1,3 +1,4 @@ +#!/usr/bin/env bash # python path export python_path="/usr/local/bin/python3.9" # pip path diff --git a/launchers/chat/src/main/bin/env.sh b/launchers/chat/src/main/bin/env.sh index 50eb80a90..f3c930dd1 100644 --- a/launchers/chat/src/main/bin/env.sh +++ b/launchers/chat/src/main/bin/env.sh @@ -1,2 +1,3 @@ +#!/usr/bin/env bash export APP_NAME=chat-service export MAIN_CLASS=com.tencent.supersonic.ChatLauncher \ No newline at end of file diff --git a/launchers/semantic/src/main/bin/env.sh b/launchers/semantic/src/main/bin/env.sh index e47370067..17bdc1cda 100644 --- a/launchers/semantic/src/main/bin/env.sh +++ b/launchers/semantic/src/main/bin/env.sh @@ -1,2 +1,3 @@ +#!/usr/bin/env bash export APP_NAME=semantic-service export MAIN_CLASS=com.tencent.supersonic.SemanticLauncher \ No newline at end of file diff --git a/launchers/standalone/src/main/bin/env.sh b/launchers/standalone/src/main/bin/env.sh index e808d15bf..42410337f 100644 --- a/launchers/standalone/src/main/bin/env.sh +++ b/launchers/standalone/src/main/bin/env.sh @@ -1,2 +1,3 @@ +#!/usr/bin/env bash export APP_NAME=chat-service export MAIN_CLASS=com.tencent.supersonic.StandaloneLauncher