Skip to content

Commit

Permalink
modify console download url (FISCO-BCOS#781)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyjseagull authored Apr 1, 2020
1 parent d754122 commit da18f87
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ info|2019-01-21 17:23:40.612241| [g:1][p:264][CONSENSUS][SEALER]++++++++++++++++
- 获取控制台并回到fisco目录

```bash
cd ~/fisco && bash nodes/127.0.0.1/download_console.sh
cd ~/fisco && curl -LO https://github.com/FISCO-BCOS/console/releases/download/v1.0.9/download_console.sh && bash download_console.sh
```

- 拷贝控制台配置文件
Expand Down
2 changes: 1 addition & 1 deletion docs/manual/console.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
```bash
cd ~ && mkdir -p fisco && cd fisco
# 获取控制台
bash <(curl -S https://raw.githubusercontent.com/FISCO-BCOS/console/master/tools/download_console.sh)
curl -LO https://github.com/FISCO-BCOS/console/releases/download/v1.0.9/download_console.sh && bash download_console.sh
```
目录结构如下:
```bash
Expand Down
2 changes: 1 addition & 1 deletion docs/manual/distributed_storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ info|2019-05-28 16:26:40.498838|[g:1][CONSENSUS][SEALER]++++++++++++++++ Generat
#### 准备依赖
```bash
cd ~/fisco;
bash <(curl -S https://raw.githubusercontent.com/FISCO-BCOS/console/master/tools/download_console.sh)
curl -LO https://github.com/FISCO-BCOS/console/releases/download/v1.0.9/download_console.sh && bash download_console.sh
cp -n console/conf/applicationContext-sample.xml console/conf/applicationContext.xml
cp nodes/127.0.0.1/sdk/* console/conf/
```
Expand Down
4 changes: 2 additions & 2 deletions docs/manual/group_use_cases.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ info|2019-02-11 15:39:42.922510| [g:2][p:520][CONSENSUS][SEALER]++++++++Generati
$ cd ~/fisco

# 获取控制台
$ bash <(curl -S https://raw.githubusercontent.com/FISCO-BCOS/console/master/tools/download_console.sh)
$ curl -LO https://github.com/FISCO-BCOS/console/releases/download/v1.0.9/download_console.sh && bash download_console.sh

# 进入控制台操作目录
$ cd console
Expand Down Expand Up @@ -670,7 +670,7 @@ info|2019-02-11 21:14:01.657428| [g:2][p:520][CONSENSUS][SEALER]++++++++Generati
# 若从未下载控制台,请进行下面操作下载控制台,否则将控制台拷贝到~/fisco目录:
$ cd ~/fisco
# 获取控制台
$ bash <(curl -S https://raw.githubusercontent.com/FISCO-BCOS/console/master/tools/download_console.sh)
$ curl -LO https://github.com/FISCO-BCOS/console/releases/download/v1.0.9/download_console.sh && bash download_console.sh
```

**配置控制台**
Expand Down
2 changes: 1 addition & 1 deletion en/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ sudo apt install -y default-jdk
- Get console

```bash
cd ~/fisco && bash nodes/127.0.0.1/download_console.sh
cd ~/fisco && curl -LO https://github.com/FISCO-BCOS/console/releases/download/v1.0.9/download_console.sh && bash download_console.sh
```

- Copy the console configuration file. If the node does not use the default port, please replace 20200 in the file with another port.
Expand Down
2 changes: 1 addition & 1 deletion en/docs/manual/console.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ When a console command is launched, the console will obtain the result of the co
```bash
$ cd ~ && mkdir fisco && cd fisco
# get console
$ bash <(curl -S https://raw.githubusercontent.com/FISCO-BCOS/console/master/tools/download_console.sh)
$ curl -LO https://github.com/FISCO-BCOS/console/releases/download/v1.0.9/download_console.sh && bash download_console.sh
```
The directory structure is as follows:
```bash
Expand Down
2 changes: 1 addition & 1 deletion en/docs/manual/distributed_storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ info|2019-05-28 16:26:40.498838|[g:1][CONSENSUS][SEALER]++++++++++++++++ Generat
#### Prepare dependence
```bash
cd ~/fisco;
bash <(curl -S https://raw.githubusercontent.com/FISCO-BCOS/console/master/tools/download_console.sh)
curl -LO https://github.com/FISCO-BCOS/console/releases/download/v1.0.9/download_console.sh && bash download_console.sh
cp -n console/conf/applicationContext-sample.xml console/conf/applicationContext.xml
cp nodes/127.0.0.1/sdk/* console/conf/
```
Expand Down
4 changes: 2 additions & 2 deletions en/docs/manual/group_use_cases.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ The console connects to the FISCO BCOS node through the Web3SDK, it is used to q
$ cd ~/fisco

# Download console
$ bash <(curl -S https://raw.githubusercontent.com/FISCO-BCOS/console/master/tools/download_console.sh)
$ curl -LO https://github.com/FISCO-BCOS/console/releases/download/v1.0.9/download_console.sh && bash download_console.sh

# Switch to console directory
$ cd console
Expand Down Expand Up @@ -679,7 +679,7 @@ info|2019-02-11 21:14:01.657428| [g:2][p:520][CONSENSUS][SEALER]++++++++Generati
# If you have never downloaded the console, please do the following to download the console, otherwise copy the console to the ~/fisco directory:
$ cd ~/fisco
# Download console
$ bash <(curl -S https://raw.githubusercontent.com/FISCO-BCOS/console/master/tools/download_console.sh)
$ curl -LO https://github.com/FISCO-BCOS/console/releases/download/v1.0.9/download_console.sh && bash download_console.sh
```

**Configuration console**
Expand Down

0 comments on commit da18f87

Please sign in to comment.