This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git
The following commit(s) were added to refs/heads/master by this push:
new 95c047bdf3 Fix `startup.sh` (#11843)
95c047bdf3 is described below
commit 95c047bdf31bc300e6a8616fa6108b430d4d1387
Author: wuwen <[email protected]>
AuthorDate: Tue Jan 30 11:33:59 2024 +0800
Fix `startup.sh` (#11843)
Add '&' symbols to `startup.sh`
---
dist-material/bin/startup.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dist-material/bin/startup.sh b/dist-material/bin/startup.sh
index 19f7af724e..9156dd3f48 100644
--- a/dist-material/bin/startup.sh
+++ b/dist-material/bin/startup.sh
@@ -21,6 +21,6 @@ PRGDIR=`dirname "$PRG"`
OAP_EXE=oapService.sh
WEBAPP_EXE=webappService.sh
-"$PRGDIR"/"$OAP_EXE"
+"$PRGDIR"/"$OAP_EXE" &
-"$PRGDIR"/"$WEBAPP_EXE"
+"$PRGDIR"/"$WEBAPP_EXE" &