From 65a618d0198e207301498c86b3f2e6f17fc3cd80 Mon Sep 17 00:00:00 2001 From: Derrik Milligan <37845846+DerrikMilligan@users.noreply.github.com> Date: Tue, 2 Jul 2024 12:02:38 -0600 Subject: [PATCH] Add arch as supported os Update `SUPPORTED_OS` to include the id `arch`. The install script supports `arch` but you can't proceed with a server install because `arch` isn't a `SUPPORTED_OS` --- bootstrap/helpers/constants.php | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrap/helpers/constants.php b/bootstrap/helpers/constants.php index e0272fa4c..24e596a0f 100644 --- a/bootstrap/helpers/constants.php +++ b/bootstrap/helpers/constants.php @@ -40,6 +40,7 @@ const SUPPORTED_OS = [ 'ubuntu debian raspbian', 'centos fedora rhel ol rocky amzn almalinux', 'sles opensuse-leap opensuse-tumbleweed', + 'arch', ]; const SHARED_VARIABLE_TYPES = ['team', 'project', 'environment'];