diff --git a/docs/getting-started/install/node.md b/docs/getting-started/install/node.md index c28925f..45a0da3 100644 --- a/docs/getting-started/install/node.md +++ b/docs/getting-started/install/node.md @@ -13,7 +13,8 @@ Loggie使用Golang编译成二进制,可根据自身需求对接各类部署 ## 下载二进制 ``` -mkdir /opt/loggie && curl https://github.com/loggie-io/installation/releases/download//loggie-linux-amd64 -o /opt/loggie/loggie && chmod +x /opt/loggie/loggie +VERSION=v1.3.0 +mkdir /opt/loggie && curl https://github.com/loggie-io/loggie/releases/download/${VERSION}/loggie-linux-amd64 -o /opt/loggie/loggie && chmod +x /opt/loggie/loggie ``` 请将以上的``替换成具体的版本号。