From 8e69dde50a16502984f4f66d7f6b792a4fc38353 Mon Sep 17 00:00:00 2001 From: Rune Morling Date: Fri, 13 Oct 2023 13:00:33 +0200 Subject: [PATCH] README: Specify the need to create the sosroot/ dir Signed-off-by: Rune Morling --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c4357327..b9c28619 100644 --- a/README.md +++ b/README.md @@ -49,15 +49,18 @@ Remember to use the `-D sosroot` argument to specify a root directory, otherwise eat your operating system. cargo build --release - + + # create the sosroot/ directory + mkdir -pv sosroot/ + # Add the volatile repo - ./target/release/moss -D sosroot repo add volatile https://dev.serpentos.com/volatile/x86_64/stone.index + ./target/release/moss -D sosroot/ repo add volatile https://dev.serpentos.com/volatile/x86_64/stone.index # List packages - ./target/release/moss -D sosroot list available + ./target/release/moss -D sosroot/ list available # Install something - ./target/release/moss -D sosroot install systemd bash libx11-32bit + ./target/release/moss -D sosroot/ install systemd bash libx11-32bit ## Contributing changes