diff --git a/installer.sh b/installer.sh
index 7f0370665247c3ed357215cd68a347e95b499f8a..f91adbcffea6001d41d323eaddd0cda65609a637 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