Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into memoregenerator_set…
Browse files Browse the repository at this point in the history
…Id_order
sbesson committed Jan 13, 2025
2 parents 08b1ad2 + a2c6e0d commit bff8ca4
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ plugins {
}

group = 'com.glencoesoftware.omero'
version = '0.10.0'
version = '0.10.1-SNAPSHOT'

mainClassName = 'com.glencoesoftware.omero.ms.image.region.OmeroVertxLauncher'

4 changes: 3 additions & 1 deletion src/dist/regen-memo-files.sh
Original file line number Diff line number Diff line change
@@ -164,8 +164,10 @@ else
DB_HOST=$( grep omero.db.host ${MS_CONFIG} |awk -F: '{ print $2 }' | sed -re 's/\s+//g' -e 's/\"//g')
DB_NAME=$( grep omero.db.name ${MS_CONFIG} |awk -F: '{ print $2 }' | sed -re 's/\s+//g' -e 's/\"//g')
DB_PASS=$( grep omero.db.pass ${MS_CONFIG} |awk -F: '{ print $2 }' | sed -re 's/\s+//g' -e 's/\"//g')
PSQL_OPTIONS="postgresql://${DB_USER:-omero}:${DB_PASS:-omero}@${DB_HOST:-localhost}:${DB_PORT:-5432}/${DB_NAME:-omero}"
else
PSQL_OPTIONS=${DB}
fi
PSQL_OPTIONS="postgresql://${DB_USER:-omero}:${DB_PASS:-omero}@${DB_HOST:-localhost}:${DB_PORT:-5432}/${DB_NAME:-omero}"
psql ${PSQL_OPTIONS} omero -f ${MEMOIZER_HOME}/memo_regenerator.sql > ${FULL_CSV}
fi
[ -n "${DRYRUN}" ] && set -x

0 comments on commit bff8ca4

Please sign in to comment.