From fa2407d7b4a12ec3e2db4156b7b49cbf85746b45 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber@stgraber.org>
Date: Thu, 30 Nov 2023 15:05:17 -0500
Subject: [PATCH] README: Add note about minimum Go version
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Stéphane Graber <stgraber@stgraber.org>
---
 README.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/README.md b/README.md
index 5e90b47f..3ae752e0 100644
--- a/README.md
+++ b/README.md
@@ -64,12 +64,15 @@ To compile `distrobuilder` from source, first install the Go programming languag
     sudo apt update
     sudo apt install -y golang-go debootstrap rsync gpg squashfs-tools git
     ```
+
 - ArchLinux-based:
     ```
     sudo pacman -Syu
     sudo pacman -S go debootstrap rsync gnupg squashfs-tools git --needed
     ```
 
+NOTE: Distrobuilder requires Go 1.20 or higher, if your distribution doesn't have a recent enough version available, [get it from upstream](https://go.dev/doc/install).
+
 Second, download the source code of the `distrobuilder` repository (this repository).
 
 ```