From a118de7bcb32cee63b289d2c4b6775fbe4559471 Mon Sep 17 00:00:00 2001 From: lolwierd Date: Mon, 30 Mar 2026 17:08:07 +0530 Subject: [PATCH] refactor: remove unnecessary package installations from app install scripts --- erpnext/install.sh | 1 - ghost/install.sh | 1 - openclaw/install.sh | 1 - picoclaw/install.sh | 1 - plausible/install.sh | 1 - 5 files changed, 5 deletions(-) diff --git a/erpnext/install.sh b/erpnext/install.sh index accf203..1c2abc0 100644 --- a/erpnext/install.sh +++ b/erpnext/install.sh @@ -26,7 +26,6 @@ mkdir -p "${BOOTSTRAP_DIR}" source /var/excloud/scripts/caddy-setup.sh setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR" -apt-get install -y git openssl if git -C "${ERPNEXT_DIR}" rev-parse 2>/dev/null; then echo "Git repo exists" diff --git a/ghost/install.sh b/ghost/install.sh index ecc5e49..a6f4067 100644 --- a/ghost/install.sh +++ b/ghost/install.sh @@ -24,7 +24,6 @@ mkdir -p "${BOOTSTRAP_DIR}" source /var/excloud/scripts/caddy-setup.sh setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR" -apt-get install -y git openssl if [ ! -d "${GHOST_DIR}/.git" ]; then git clone "${REPO_URL}" "${GHOST_DIR}" diff --git a/openclaw/install.sh b/openclaw/install.sh index 1ed74fd..0f25923 100644 --- a/openclaw/install.sh +++ b/openclaw/install.sh @@ -23,7 +23,6 @@ mkdir -p "${BOOTSTRAP_DIR}" source /var/excloud/scripts/caddy-setup.sh setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR" -apt-get install -y git openssl if [ ! -d "${OPENCLAW_DIR}/.git" ]; then git clone "${REPO_URL}" "${OPENCLAW_DIR}" diff --git a/picoclaw/install.sh b/picoclaw/install.sh index a1ec59c..a3ddd31 100644 --- a/picoclaw/install.sh +++ b/picoclaw/install.sh @@ -23,7 +23,6 @@ mkdir -p "${BOOTSTRAP_DIR}" source /var/excloud/scripts/caddy-setup.sh setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR" -apt-get install -y git if [ ! -d "${PICOCLAW_DIR}/.git" ]; then git clone "${REPO_URL}" "${PICOCLAW_DIR}" diff --git a/plausible/install.sh b/plausible/install.sh index 941cade..f6846ff 100644 --- a/plausible/install.sh +++ b/plausible/install.sh @@ -25,7 +25,6 @@ mkdir -p "${BOOTSTRAP_DIR}" source /var/excloud/scripts/caddy-setup.sh setup_initializing_page "$DOMAIN" "$APP_NAME" "$BOOTSTRAP_DIR" -apt-get install -y git openssl if [ ! -d "${PLAUSIBLE_DIR}/.git" ]; then git clone -b "${REPO_REF}" --single-branch "${REPO_URL}" "${PLAUSIBLE_DIR}"