Skip to content

Commit

Permalink
fix: use fuse2 build dependencies (#1368)
Browse files Browse the repository at this point in the history
  • Loading branch information
aawsome authored Nov 26, 2024
1 parent 7320d48 commit 099c8b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build-dependencies.just
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ install-default-aarch64-unknown-linux-musl:
# Install dependencies for the mount feature on x86_64-unknown-linux-gnu
install-mount-x86_64-unknown-linux-gnu:
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev pkg-config
sudo apt-get install -y libfuse-dev pkg-config

# Install dependencies for the mount feature on aarch64-unknown-linux-gnu
install-mount-aarch64-unknown-linux-gnu:
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev pkg-config
sudo apt-get install -y libfuse-dev pkg-config

# Install dependencies for the mount feature on i686-unknown-linux-gnu
install-mount-i686-unknown-linux-gnu:
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev pkg-config
sudo apt-get install -y libfuse-dev pkg-config

# Install dependencies for the mount feature on x86_64-apple-darwin
install-mount-x86_64-apple-darwin:
Expand Down

0 comments on commit 099c8b8

Please sign in to comment.