From a914d3e5e27b33521ab37d05460e6b066695f5e6 Mon Sep 17 00:00:00 2001 From: Orestis <orestis.malaspinas@pm.me> Date: Thu, 29 Feb 2024 16:15:01 +0100 Subject: [PATCH] removed macos as install target because of bug --- installer.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/installer.sh b/installer.sh index 7f03706..f91adbc 100644 --- a/installer.sh +++ b/installer.sh @@ -150,6 +150,7 @@ download_installer() { tdir=$(command mktemp -d "/tmp/dojo-install-XXXXXXXXXXXX") printf '%s\n' "Downloading from: $url" if [ "$OS" = "macos" ]; then + die "macOS installation is not yet supported" installer="$tdir/dojo" else installer="$tdir/dojo" @@ -176,7 +177,8 @@ main() { get_download_url download_installer if [ "$OS" = "macos" ]; then - macos_install + die "macOS installation is not yet supported" + # macos_install else linux_install fi -- GitLab