Skip to content

Commit

Permalink
docs: update how_to_build.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dongchangYoo committed May 13, 2024
1 parent 79ec287 commit 395c0b9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/how_to_use/how_to_build.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,9 @@ Tachyon can be built in your own Bazel project with the following two simple ste
First, obtain the Tachyon code from a specific commit hash and get a SHA256 value from the fetched code through these commands:

```shell
wget https://github.com/kroma-network/tachyon/archive/c6a38895cb6f9b9f73e3d64928d85a9762b66639.tar.gz
wget https://github.com/kroma-network/tachyon/archive/79ec2875bdc6fce62e490c845b44477b15df45ec.tar.gz

shasum -a 256 c6a38895cb6f9b9f73e3d64928d85a9762b66639.tar.gz
shasum -a 256 79ec2875bdc6fce62e490c845b44477b15df45ec.tar.gz
```

Second, input the shasum output into your `WORKSPACE` file as the `sha256` argument like shown below:
Expand All @@ -174,9 +174,9 @@ Second, input the shasum output into your `WORKSPACE` file as the `sha256` argum
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "kroma_network_tachyon",
sha256 = "3ebc4edca153c9b93de200d5e22be66d1ff7ea52e2793c83947607c532dfacbc",
strip_prefix = "tachyon-c6a38895cb6f9b9f73e3d64928d85a9762b66639",
urls = ["https://github.com/kroma-network/tachyon/archive/c6a38895cb6f9b9f73e3d64928d85a9762b66639.tar.gz"],
sha256 = "a37fba8082a2c27a4a2f09255cf6c2693836dccbb8a8cea7e327d860115ffd30",
strip_prefix = "tachyon-79ec2875bdc6fce62e490c845b44477b15df45ec",
urls = ["https://github.com/kroma-network/tachyon/archive/79ec2875bdc6fce62e490c845b44477b15df45ec.tar.gz"],
)
```

Expand Down

0 comments on commit 395c0b9

Please sign in to comment.