We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0533961 commit 0d66da0Copy full SHA for 0d66da0
build_scripts/shared_install.sh
@@ -125,9 +125,10 @@ install_timescaledb() {
125
log "installing $pkg-$version for pg$pg"
126
127
[[ "$DRYRUN" = true ]] && continue
128
-
+
129
# use deb packages only with timescaledb versions >= 2.24
130
- if [ "$(printf '%s\n' "$version" "2.24.0" | sort -V | tail -n1)" = "$version" ]; then
+ # skip deb install for branch names (main, feature/foo, etc.) and build from source instead
131
+ if [[ "$version" =~ ^[0-9]+\.[0-9]+\.[0-9]+ ]] && [ "$(printf '%s\n' "$version" "2.24.0" | sort -V | tail -n1)" = "$version" ]; then
132
log "installing deb package for $pkg-$version for pg$pg"
133
134
install_timescaledb_for_pg_version "${pg}" "${version}"
0 commit comments