From c04d6b04e3ee28e733507684acf759caec0266d3 Mon Sep 17 00:00:00 2001 From: Peter Michaux Date: Wed, 3 Jan 2024 19:14:51 -0800 Subject: [PATCH] Update README.md This directory structure is required so that the following line cp $HOME/go/src/github.com/lxc/distrobuilder/doc/examples/ubuntu.yaml ubuntu.yaml works in the following tutorial https://linuxcontainers.org/distrobuilder/docs/latest/tutorials/use/ I had to hunt around to find the example YAML configuration files. Signed-off-by: Peter Michaux --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 534ad501..c4ccbc70 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,8 @@ NOTE: Distrobuilder requires Go 1.20 or higher, if your distribution doesn't hav Second, download the source code of the `distrobuilder` repository (this repository). ``` +mkdir -p $HOME/go/src/github.com/lxc/ +cd $HOME/go/src/github.com/lxc/ git clone https://github.com/lxc/distrobuilder ```