You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@milagro.apache.org by sa...@apache.org on 2017/10/19 12:10:01 UTC

incubator-milagro-mfa-server git commit: Fix milagro-crypto repository URL [Forced Update!]

Repository: incubator-milagro-mfa-server
Updated Branches:
  refs/heads/master 595e16cda -> ab5e36de5 (forced update)


Fix milagro-crypto repository URL


Project: http://git-wip-us.apache.org/repos/asf/incubator-milagro-mfa-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-milagro-mfa-server/commit/ab5e36de
Tree: http://git-wip-us.apache.org/repos/asf/incubator-milagro-mfa-server/tree/ab5e36de
Diff: http://git-wip-us.apache.org/repos/asf/incubator-milagro-mfa-server/diff/ab5e36de

Branch: refs/heads/master
Commit: ab5e36de537c56b7dc62a04cbb434859d464e856
Parents: 1b3f504
Author: Simeon Aladjem <si...@miracl.com>
Authored: Thu Oct 19 15:09:50 2017 +0300
Committer: Simeon Aladjem <si...@miracl.com>
Committed: Thu Oct 19 15:09:50 2017 +0300

----------------------------------------------------------------------
 README.md  | 8 ++++----
 install.sh | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-milagro-mfa-server/blob/ab5e36de/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 72c84f2..e1bc7cb 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ You can run it from `<milagro-mfa-server>` base directory like this
  > ./install.sh
 ```
 you can provide optional argument to the script <milagro-mfa-js-client-location> where this is an absolute path of
-the location `https://github.com/miracl/milagro-mfa-js-client` is downloaded.
+the location `https://github.com/apache/incubator-milagro-mfa-js-client` is downloaded.
 ```
  > ./install.sh <milagro-mfa-js-client-location>
 ```
@@ -70,11 +70,11 @@ NOTE: If install.sh script is used you can skip this step
 
 #### Building the Milagro Crypto Libraries
 
-Clone the [_milagro-crypto_ repository](https://github.com/miracl/milagro-crypto) 
+Clone the [_milagro-crypto_ repository](https://github.com/apache/incubator-milagro-crypto) 
 ```
-> git clone https://github.com/miracl/milagro-crypto.git
+> git clone https://github.com/apache/incubator-milagro-crypto.git milagro-crypto
 ``` 
-Follow the instructions for your platform from the milagro-crypto [README file](https://github.com/miracl/milagro-crypto/blob/master/README.md#build-instructions).
+Follow the instructions for your platform from the milagro-crypto [README file](https://github.com/apache/incubator-milagro-crypto/blob/master/README.md#build-instructions).
 
 #### Getting Credentials
 

http://git-wip-us.apache.org/repos/asf/incubator-milagro-mfa-server/blob/ab5e36de/install.sh
----------------------------------------------------------------------
diff --git a/install.sh b/install.sh
index 03df987..777bbf5 100755
--- a/install.sh
+++ b/install.sh
@@ -33,7 +33,7 @@ function get_crypto {
     echo "Get Milagro Crypto Libraries"
     mkdir -p install
     cd install || exit
-    git clone https://github.com/miracl/milagro-crypto.git
+    git clone https://github.com/apache/incubator-milagro-crypto.git milagro-crypto
 
     cd milagro-crypto || exit
 }