From e64220f22297b71558f2d79533de485c1e910bf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Far=C3=ADas=20Santana?= Date: Mon, 3 Apr 2023 11:40:32 +0200 Subject: [PATCH] fix: Set hobby deployments to 'latest' by default --- bin/deploy-hobby | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/deploy-hobby b/bin/deploy-hobby index ef8a719e26dfb..e3ba0adbcea46 100755 --- a/bin/deploy-hobby +++ b/bin/deploy-hobby @@ -2,7 +2,7 @@ set -e -export POSTHOG_APP_TAG="${POSTHOG_APP_TAG:-latest-release}" +export POSTHOG_APP_TAG="${POSTHOG_APP_TAG:-latest}" export SENTRY_DSN="${SENTRY_DSN:-'https://public@sentry.example.com/1'}" POSTHOG_SECRET=$(head -c 28 /dev/urandom | sha224sum -b | head -c 56) @@ -21,7 +21,7 @@ if ! [ -z "$1" ] then export POSTHOG_APP_TAG=$1 else -echo "What version of Posthog would you like to install? (We default to 'latest-release')" +echo "What version of Posthog would you like to install? (We default to 'latest')" echo "You can check out available versions here: https://hub.docker.com/r/posthog/posthog/tags" read -r POSTHOG_APP_TAG_READ if [ -z "$POSTHOG_APP_TAG_READ" ]