From 7bd1e25d956e0ec0c88eeb0340ef7bc2ef1ea6e6 Mon Sep 17 00:00:00 2001 From: GodloveD Date: Tue, 7 Nov 2017 21:20:07 +0000 Subject: [PATCH] testing bold inside of code block --- INSTALL.md | 35 +++++++++++------------------------ 1 file changed, 11 insertions(+), 24 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index c876b63e04..43f1e2c754 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -11,7 +11,7 @@ $ sudo yum groupinstall "Development Tools" ## To compile and install Singularity from a [released tarball](https://github.com/singularityware/singularity/blob/master/.travis.yml): -Here, the version of Singularity that you want to install is given in
<version>
. Please substitute as necessary. +Here, the version of Singularity that you want to install is given in <version>. Please substitute as necessary.
 $ version=<version>
 $ wget "https://github.com/singularityware/singularity/releases/download/${version}/singularity-${version}.tar.gz"
@@ -26,43 +26,30 @@ note: The `sudo` is very important for the `make install`. Failure to do this
 will result in a non-functioning or semi-functioning installation.
 
 ## To compile and install Singularity from a Git clone:
-
-```
+Here, the version of Singularity that you want to install is given in <version>.  Please substitute as necessary.  
+
+$ version=<version>
 $ git clone https://github.com/singularityware/singularity.git
 $ cd singularity
-$ git checkout tags/2.4 -b 2.4
-$ ./autogen.sh
-$ ./configure --prefix=/usr/local
-$ make
-$ sudo make install
-```
-
-note: The `sudo` is very important for the `make install`. Failure to do this
-will result in a non-functioning or semi-functioning installation.
-
-## To compile and install Singularity from an existing Git clone:
-
-```
-$ cd singularity
-$ git fetch --tags origin
-$ git checkout tags/2.4 -b 2.4
+$ git checkout tags/${version} -b ${version}
 $ ./autogen.sh
 $ ./configure --prefix=/usr/local
 $ make
 $ sudo make install
-```
+
note: The `sudo` is very important for the `make install`. Failure to do this will result in a non-functioning or semi-functioning installation. ## To build an RPM of Singularity from a Git clone: - -``` +Here, the version of Singularity that you want to install is given in <version>. Please substitute as necessary. +
+$ version=<version>
 $ git clone https://github.com/singularityware/singularity.git
 $ cd singularity
-$ git checkout tags/2.4 -b 2.4
+$ git checkout tags/${version} -b ${version}
 $ ./autogen.sh
 $ ./configure
 $ make dist
 $ rpmbuild -ta singularity-*.tar.gz
-```
+