mirror of
https://github.com/tensorchord/pgvecto.rs.git
synced 2025-04-18 21:44:00 +03:00
* chore: upgrade scripts for unsupported version Signed-off-by: usamoi <usamoi@outlook.com> * fix: release ci Signed-off-by: usamoi <usamoi@outlook.com> --------- Signed-off-by: usamoi <usamoi@outlook.com>
9 lines
198 B
Bash
Executable File
9 lines
198 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cargo pgrx package
|
|
|
|
for file in ./sql/upgrade/*; do
|
|
cp "$file" "./target/release/vectors-pg$VERSION/usr/share/postgresql/$VERSION/extension/$(basename "$file")"
|
|
done
|