Skip to content

Commit

Permalink
chore: update release scripts for v1.3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
danil committed Apr 1, 2016
1 parent c559ce0 commit 7e12483
Show file tree
Hide file tree
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
Expand Up @@ -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/v1.3.0.2.0.1/fhirbase-1.3.0.2.0.1.sql.zip \
https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.2/fhirbase-1.3.0.2.sql.zip \
| funzip ; } \
| psql
[[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]] && exit 1
Expand Down
4 changes: 2 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.29"
FBVERSION="1.3.0.2.0.1"
PREV_FBVERSION="1.3.0.2.0.1"
FBVERSION="1.3.0.2"

PGOPTIONS='--client-min-messages=warning'
loadcmd="psql --no-psqlrc --quiet --echo-all --single-transaction \
Expand Down
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 = -> '1.3.0.2.0.1'
fhirbase_version = -> '1.3.0.2'

exports.fhirbase_version = fhirbase_version

Expand Down
2 changes: 1 addition & 1 deletion vagrant/provision/provision-environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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/v1.3.0.2.0.1/fhirbase-1.3.0.2.0.1.sql.zip | funzip | psql -d fhir" \
echo "curl --location https://github.com/fhirbase/fhirbase-plv8/releases/download/v1.3.0.2/fhirbase-1.3.0.2.sql.zip | funzip | psql -d fhir" \
| sudo -u postgres sh || exit 1

echo "listen_addresses = '*'" \
Expand Down

0 comments on commit 7e12483

Please sign in to comment.