Skip to content

Commit

Permalink
use actual release tag (#25311)
Browse files Browse the repository at this point in the history
  • Loading branch information
josephkmh authored Apr 19, 2023
1 parent 819bba1 commit 4a0c85c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion run-ab-platform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
set -o nounset # -u exit if a variable is not set
set -o errexit # -f exit for any command failure

# Get the version specified in the .env file
version_tag="v$(cat .env | grep ^VERSION | cut -d '=' -f 2)"

# text color escape codes (please note \033 == \e but OSX doesn't respect the \e)
blue_text='\033[94m'
Expand Down Expand Up @@ -41,7 +43,7 @@ docker_compose_debug_yaml="docker-compose.debug.yaml"
flags="flags.yml"
# any string is an array to POSIX shell. Space seperates values
all_files="$docker_compose_yaml $docker_compose_debug_yaml $dot_env $dot_env_dev $flags"
base_github_url="https://raw.githubusercontent.com/airbytehq/airbyte-platform/main/"
base_github_url="https://raw.githubusercontent.com/airbytehq/airbyte-platform/$version_tag/"

############################################################
# Download #
Expand Down

0 comments on commit 4a0c85c

Please sign in to comment.