Skip to content
Snippets Groups Projects
Verified Commit a914d3e5 authored by orestis.malaspin's avatar orestis.malaspin
Browse files

removed macos as install target because of bug

parent c843a0fb
Branches
No related tags found
No related merge requests found
...@@ -150,6 +150,7 @@ download_installer() { ...@@ -150,6 +150,7 @@ download_installer() {
tdir=$(command mktemp -d "/tmp/dojo-install-XXXXXXXXXXXX") tdir=$(command mktemp -d "/tmp/dojo-install-XXXXXXXXXXXX")
printf '%s\n' "Downloading from: $url" printf '%s\n' "Downloading from: $url"
if [ "$OS" = "macos" ]; then if [ "$OS" = "macos" ]; then
die "macOS installation is not yet supported"
installer="$tdir/dojo" installer="$tdir/dojo"
else else
installer="$tdir/dojo" installer="$tdir/dojo"
...@@ -176,7 +177,8 @@ main() { ...@@ -176,7 +177,8 @@ main() {
get_download_url get_download_url
download_installer download_installer
if [ "$OS" = "macos" ]; then if [ "$OS" = "macos" ]; then
macos_install die "macOS installation is not yet supported"
# macos_install
else else
linux_install linux_install
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment