From d7f3b62d262130356dbcb5f7f6b39f0bf9765c2b Mon Sep 17 00:00:00 2001 From: Vincent Ollivier Date: Fri, 18 Oct 2024 12:35:39 +0200 Subject: [PATCH] Add comment to install script --- src/usr/install.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/usr/install.rs b/src/usr/install.rs index 33845589..43d58bac 100644 --- a/src/usr/install.rs +++ b/src/usr/install.rs @@ -25,6 +25,9 @@ pub fn copy_files(verbose: bool) { create_dir("/usr", verbose); // User directories create_dir("/var", verbose); // Variables + // NOTE: Here are the binaries to be included in the build image, but they + // can also be installed later with the `pkg install` command. + //copy_file!("/bin/blank", verbose); copy_file!("/bin/clear", verbose); //copy_file!("/bin/exec", verbose);