Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,18 @@ pub mod docker {
}

pub mod lz4 {
use indoc::indoc;

pub fn install() -> String {
"apt-get install -y lz4".to_string()
// Don't use apt since we need v1.10.0 for multithreading support
indoc!(
r#"
echo 'Downloading lz4'
curl -L https://releases.rivet.gg/tools/lz4/1.10.0/debian11-amd64/lz4 -o /usr/local/bin/lz4
chmod +x /usr/local/bin/lz4
"#
)
.to_string()
}
}

Expand Down
Loading