Skip to content

Commit

Permalink
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion perf/perf
Original file line number Diff line number Diff line change
@@ -112,7 +112,7 @@ EOF
echo Install Fhirbase into $PGDATABASE.$pg_schema database.
{ echo "SET search_path TO $pg_schema;" \
&& curl --location \
https://github.com/fhirbase/fhirbase-plv8/releases/download/v0.0.1-beta.26/fhirbase-0.0.1-beta.26.sql.zip \
https://github.com/fhirbase/fhirbase-plv8/releases/download/v0.0.1-beta.27/fhirbase-0.0.1-beta.27.sql.zip \
| funzip ; } \
| psql
[[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]] && exit 1
4 changes: 2 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
@@ -7,8 +7,8 @@ set -e
# DATABASE_URL=postgres://your_user_name:your_password@localhost:5432/fhirbase_build
# WARNING: `fhirbase_build` database will be destroed and recreated!

PREV_FBVERSION="0.0.1-beta.25"
FBVERSION="0.0.1-beta.26"
PREV_FBVERSION="0.0.1-beta.26"
FBVERSION="0.0.1-beta.27"

PGOPTIONS='--client-min-messages=warning'
loadcmd="psql --no-psqlrc --quiet --echo-all --single-transaction \
2 changes: 1 addition & 1 deletion src/core/version.coffee
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fhirbase_version = ()-> '0.0.1-beta.26'
fhirbase_version = ()-> '0.0.1-beta.27'

exports.fhirbase_version = fhirbase_version

2 changes: 1 addition & 1 deletion vagrant/provision/provision-environment.sh
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ echo "createuser -s fhir" | sudo -u postgres sh || exit 1
echo "psql -d postgres -c 'create database fhir'" \
| sudo -u postgres sh || exit 1

echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v0.0.1-beta.26/fhirbase-0.0.1-beta.26.sql.zip | funzip | psql -d fhir" \
echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v0.0.1-beta.27/fhirbase-0.0.1-beta.27.sql.zip | funzip | psql -d fhir" \
| sudo -u postgres sh || exit 1

echo "listen_addresses = '*'" \

0 comments on commit aee6b14

Please sign in to comment.