Skip to content

Commit

Permalink
fix: use VERSION env and not .env file for sourcing version (#14083)
Browse files Browse the repository at this point in the history
  • Loading branch information
perangel authored and bgroff committed Sep 23, 2024
1 parent df27452 commit da17b7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/lib/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ get_connector_version() {
_get_docker_image_version "$dockerfile"
}

VERSION=$(cat .version | grep "^VERSION=" | cut -d = -f 2); export VERSION
VERSION=${VERSION:-dev}; export VERSION
SCRIPT_DIRECTORY=$(_script_directory); export SCRIPT_DIRECTORY

DOT_AIRBYTE_ROOT=${DOT_AIRBYTE_ROOT:=~/.airbyte}

0 comments on commit da17b7a

Please sign in to comment.