From 8187a9f9d494cf88dfbfadf211570467537dffce Mon Sep 17 00:00:00 2001 From: Parham Alvani Date: Tue, 24 Sep 2024 06:06:53 +0000 Subject: [PATCH] feat: update atlas installation --- scripts/atlas.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/atlas.sh b/scripts/atlas.sh index 70659de54..86f55c39d 100644 --- a/scripts/atlas.sh +++ b/scripts/atlas.sh @@ -13,19 +13,19 @@ usage() { } main_pacman() { - return 0 + msg 'download and install the latest release of the atlas cli' + curl -sSf https://atlasgo.sh | sh } main_apt() { - return 0 + msg 'download and install the latest release of the atlas cli' + curl -sSf https://atlasgo.sh | sh } main_brew() { - # require_brew ariga/tap/atlas - return 0 + require_brew ariga/tap/atlas } main() { - msg 'download and install the latest release of the atlas cli' - curl -sSf https://atlasgo.sh | sh + return 0 }