aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorELNS <EverLookNeverSee@Protonmail.ch>2020-06-17 16:00:26 +0430
committerELNS <EverLookNeverSee@Protonmail.ch>2020-06-17 16:00:26 +0430
commit97be28708c36e7251eb7741a8308b55380fb8e84 (patch)
treeca35fadc92480660c4e7cb8c668f69612e33cb1c /README.md
parent69079ba3bb7e93a67cbf191ca5e01596baa2090a (diff)
downloadfpm-97be28708c36e7251eb7741a8308b55380fb8e84.tar.gz
fpm-97be28708c36e7251eb7741a8308b55380fb8e84.zip
Highlight bash/shell code in markdown
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 2316b14..2efaaec 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ As the prototype matures and we enter production, we will do our best to stay ba
To install [Haskell Stack](https://haskellstack.org/) on
Linux without root access, follow the [manual download](https://docs.haskellstack.org/en/stable/install_and_upgrade/#manual-download_2) procedure:
-```
+```bash
wget https://get.haskellstack.org/stable/linux-x86_64-static.tar.gz
tar xaf linux-x86_64-static.tar.gz
```
@@ -27,13 +27,13 @@ navigate to stack directory:
cd stack-2.1.3-linux-x86_64-static/
```
and put the `stack` binary in your path, for example:
-```
+```bash
export PATH="$PATH:`pwd`"
```
### Download this repository
-```
+```bash
git clone https://github.com/fortran-lang/fpm
cd fpm
```
@@ -43,15 +43,15 @@ cd fpm
Make sure that the development library of `gmp` is installed (e.g. `sudo apt install libgmp-dev` on Debian-derived Linux distributions)
Build fpm using:
-```
+```bash
stack build
```
To test:
-```
+```bash
stack test
```
To install:
-```
+```bash
stack install
```