From c19f007a99f3435a367bdf39343973b9a6025952 Mon Sep 17 00:00:00 2001 From: kdaud Date: Mon, 6 Mar 2023 10:21:31 +0300 Subject: [PATCH] Fixed module version while exporting environment variables --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c4651ad..433e102 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,13 @@ cd ~/ Then create the working directory and save the path: ``` export BAHMNI_DIR=$PWD/bahmni && \ -mkdir $BAHMNI_DIR && cd $BAHMNI_DIR +mkdir $BAHMNI_DIR ``` ### Download the Docker Compose project itself: ``` -export VERSION=2.0.0-SNAPSHOT && \ +export VERSION=2.4.0-SNAPSHOT && \ # Download the project && \ mvn org.apache.maven.plugins:maven-dependency-plugin:3.2.0:get -DremoteRepositories=https://nexus.mekomsolutions.net/repository/maven-public -Dartifact=net.mekomsolutions:bahmni-docker-compose:$VERSION:zip -Dtransitive=false --legacy-local-repository && \ # Unzip the project in $BAHMNI_DIR/bahmni-docker-compose-$VERSION && \ @@ -41,7 +41,7 @@ Fetch the distribution of your choice: Eg, Bahmni Distro **Haiti**: ``` export DISTRO_GROUP="haiti" && \ -export DISTRO_VERSION="1.2.0-SNAPSHOT" && \ +export DISTRO_VERSION="2.4.0" && \ # Download the distro && \ mvn org.apache.maven.plugins:maven-dependency-plugin:3.2.0:get -DremoteRepositories=https://nexus.mekomsolutions.net/repository/maven-public -Dartifact=net.mekomsolutions:bahmni-distro-$DISTRO_GROUP:$DISTRO_VERSION:zip -Dtransitive=false --legacy-local-repository && \ # Unzip the distro in $BAHMNI_DIR/bahmni-distro-$DISTRO_GROUP-$DISTRO_VERSION && \