From 2c3c2c2863822d44e6be8e192337217cf791b12a Mon Sep 17 00:00:00 2001 From: amir-climy Date: Thu, 21 May 2026 23:28:09 +0800 Subject: [PATCH] fix(install): rename install directory from triton-manage-server to triton-manageserver Aligns the install directory path with the container image name. Linux: /opt/triton-manageserver macOS: ~/.local/share/triton-manageserver Co-Authored-By: Claude Sonnet 4.6 --- get.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/get.sh b/get.sh index 55a9eb4..5760384 100644 --- a/get.sh +++ b/get.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash # get.sh — One-line bootstrapper for Triton Manage Server. # -# Downloads the installer to /opt/triton-manage-server (Linux) or -# ~/.local/share/triton-manage-server (macOS), installs Podman if needed, +# Downloads the installer to /opt/triton-manageserver (Linux) or +# ~/.local/share/triton-manageserver (macOS), installs Podman if needed, # then hands off to install.sh. # # Usage: @@ -18,7 +18,7 @@ # # Upgrade to a specific image tag: # curl -fsSL https://raw.githubusercontent.com/primatekuntech/triton-install/main/get.sh \ -# | sudo bash -s -- --upgrade --image ghcr.io/primatekuntech/triton-manage-server:1.2.0 +# | sudo bash -s -- --upgrade --image ghcr.io/primatekuntech/triton-manageserver:1.2.0 # # Uninstall (stop containers, keep data): # curl -fsSL https://raw.githubusercontent.com/primatekuntech/triton-install/main/get.sh \ @@ -63,9 +63,9 @@ esac # ── install directory ───────────────────────────────────────────────────── if [[ "$PLATFORM" == "linux" ]]; then - INSTALL_DIR="/opt/triton-manage-server" + INSTALL_DIR="/opt/triton-manageserver" else - INSTALL_DIR="${HOME}/.local/share/triton-manage-server" + INSTALL_DIR="${HOME}/.local/share/triton-manageserver" fi # ── uninstall shortcut ────────────────────────────────────────────────────