diff options
author | ELNS <EverLookNeverSee@Protonmail.ch> | 2020-06-17 16:00:26 +0430 |
---|---|---|
committer | ELNS <EverLookNeverSee@Protonmail.ch> | 2020-06-17 16:00:26 +0430 |
commit | 97be28708c36e7251eb7741a8308b55380fb8e84 (patch) | |
tree | ca35fadc92480660c4e7cb8c668f69612e33cb1c /README.md | |
parent | 69079ba3bb7e93a67cbf191ca5e01596baa2090a (diff) | |
download | fpm-97be28708c36e7251eb7741a8308b55380fb8e84.tar.gz fpm-97be28708c36e7251eb7741a8308b55380fb8e84.zip |
Highlight bash/shell code in markdown
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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 ``` |