Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update install.sh #1107

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ If you still want to setup dependencies manually, these are the requirements:
If you are using Ubuntu and encounter errors during the build process, you may need to install additional dependencies. Use the following command:

```
sudo apt-get install build-essential autoconf automake libtool zlib1g-dev
sudo apt install build-essential autoconf automake libtool zlib1g-dev pkg-config libssl-dev
```

## Building
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ install_go() {
install_rust() {
if ! is_installed "rust"; then
echo "Installing Rust..."
curl -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path
export RUSTUP_HOME="${PREFIX}/rustup"
export CARGO_HOME="${PREFIX}/cargo"
curl --retry 5 --retry-delay 10 --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path
export PATH="${PREFIX}/cargo/bin:${PATH}"
rustup component add clippy rustfmt
cargo install cargo-expand wasm-pack
Expand Down