Skip to content

Commit

Permalink
Update pre.rhai
Browse files Browse the repository at this point in the history
Signed-off-by: madomado <[email protected]>
  • Loading branch information
madonuko authored Oct 1, 2023
1 parent a88d9bc commit 8006b10
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions anda/others/kernel-fyra/pre.rhai
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
print("kernel-fyra: running pre.rhai");

// Install the kernel dependencies first
print(" $ sudo dnf5 -y builddep kernel");
print(sh("sudo dnf5 -y builddep kernel").sh_stdout());
//print(" $ sudo dnf5 -y builddep kernel");
//print(sh("sudo dnf5 -y builddep kernel").sh_stdout());

// Install git for source and patchset retrieval
print(" $ sudo dnf5 -y install git");
print(sh("sudo dnf5 -y install git").sh_stdout());
//print(" $ sudo dnf5 -y install git");
//print(sh("sudo dnf5 -y install git").sh_stdout());

// Run the actual build script
print(" $ ./build.sh");
Expand Down

0 comments on commit 8006b10

Please sign in to comment.