Skip to content

Commit

Permalink
Fixed download script
Browse files Browse the repository at this point in the history
  • Loading branch information
ko1N committed Mar 4, 2024
1 parent c3df326 commit 9b72076
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions install.rhai
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ fn install(ctx) {
ctx.write_plugin_artifact(artifact, name_to_lib(ctx.crate_name()));

info("Installing memflow-kvm kernel module");
let tarball = download(ctx.github_release_artifact("memflow-source-only.dkms.tar.gz"));
ctx.dkms_install(tarball);
let tarball = ctx.github_release_artifact("memflow-source-only.dkms.tar.gz");
ctx.write_plugin_artifact(tarball, "memflow-source-only.dkms.tar.gz");
ctx.dkms_install("memflow-source-only.dkms.tar.gz");

post_install();

Expand Down

0 comments on commit 9b72076

Please sign in to comment.