You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by li...@apache.org on 2021/06/04 05:47:20 UTC

[skywalking-satellite] 01/01: polish scripts and doc when without submodule

This is an automated email from the ASF dual-hosted git repository.

liujiapeng pushed a commit to branch polish-codes-doc-without-submodule
in repository https://gitbox.apache.org/repos/asf/skywalking-satellite.git

commit 230ac73e566445e9736004fd407645018a93aa52
Author: Evan <ev...@outlook.com>
AuthorDate: Fri Jun 4 13:46:14 2021 +0800

    polish scripts and doc when without submodule
---
 README.md                                     | 2 --
 docs/en/guides/compile/How-to-compile.md      | 2 --
 docs/en/guides/contribution/How-to-release.md | 2 +-
 tools/release/create_bin_release.sh           | 3 ---
 tools/release/create_source_release.sh        | 3 ---
 5 files changed, 1 insertion(+), 11 deletions(-)

diff --git a/README.md b/README.md
index b1d97b7..d0b94e7 100644
--- a/README.md
+++ b/README.md
@@ -28,8 +28,6 @@ As SkyWalking Satellite is using `Makefile`, compiling the project is as easy as
 ```shell script
 git clone https://github.com/apache/skywalking-satellite
 cd skywalking-satellite
-git submodule init
-git submodule update
 make build
 ```
 If you want to know more details about compiling, please read [the doc](./docs/en/guides/compile/How-to-compile.md).
diff --git a/docs/en/guides/compile/How-to-compile.md b/docs/en/guides/compile/How-to-compile.md
index 5519a4c..1736246 100644
--- a/docs/en/guides/compile/How-to-compile.md
+++ b/docs/en/guides/compile/How-to-compile.md
@@ -8,7 +8,5 @@ Linux, MacOS and Windows are supported in SkyWalking Satellite. However, some co
 ```shell script
 git clone https://github.com/apache/skywalking-satellite
 cd skywalking-satellite
-git submodule init
-git submodule update
 make build
 ```
\ No newline at end of file
diff --git a/docs/en/guides/contribution/How-to-release.md b/docs/en/guides/contribution/How-to-release.md
index af07674..d8c78f3 100644
--- a/docs/en/guides/contribution/How-to-release.md
+++ b/docs/en/guides/contribution/How-to-release.md
@@ -21,7 +21,7 @@ This documentation guides the release manager to release the SkyWalking Satellit
 
 ```shell
 export VERSION=<the version to release>
-git clone --recurse-submodules git@github.com:apache/skywalking-satellite && cd skywalking-satellite
+git clone git@github.com:apache/skywalking-satellite && cd skywalking-satellite
 git tag -a "$VERSION" -m "Release Apache SkyWalking-Satellite $VERSION"
 git push --tags
 make release
diff --git a/tools/release/create_bin_release.sh b/tools/release/create_bin_release.sh
index d057cce..d216723 100644
--- a/tools/release/create_bin_release.sh
+++ b/tools/release/create_bin_release.sh
@@ -56,9 +56,6 @@ fi
 
 git checkout ${TAG_NAME}
 
-git submodule init
-git submodule update
-
 make build
 
 cd ..
diff --git a/tools/release/create_source_release.sh b/tools/release/create_source_release.sh
index c7975a1..f2a74b2 100644
--- a/tools/release/create_source_release.sh
+++ b/tools/release/create_source_release.sh
@@ -55,9 +55,6 @@ fi
 
 git checkout ${TAG_NAME}
 
-git submodule init
-git submodule update
-
 cd ..