diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-01-20 22:09:05 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-01-20 23:09:05 +0200 |
commit | 3804172d61aee60c46231af373e4dcec5cc79458 (patch) | |
tree | eb2fef2e82b42fbc04fbb3903fe6642d80c98893 | |
parent | 65192af2ff62a032a3f19d065c95e12b83aae709 (diff) | |
download | meson-3804172d61aee60c46231af373e4dcec5cc79458.zip meson-3804172d61aee60c46231af373e4dcec5cc79458.tar.gz meson-3804172d61aee60c46231af373e4dcec5cc79458.tar.bz2 |
docs: Use modern shell constructs [skip ci]
-rw-r--r-- | docs/markdown/Continuous-Integration.md | 2 | ||||
-rw-r--r-- | docs/markdown/Creating-Linux-binaries.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Continuous-Integration.md b/docs/markdown/Continuous-Integration.md index 93c772d..5eec67d 100644 --- a/docs/markdown/Continuous-Integration.md +++ b/docs/markdown/Continuous-Integration.md @@ -154,7 +154,7 @@ matrix: - os: osx install: - - export PATH="`pwd`/build:${PATH}" + - export PATH="$(pwd)/build:${PATH}" - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew install python3 ninja; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then wget https://github.com/ninja-build/ninja/releases/download/v1.7.2/ninja-linux.zip && unzip -q ninja-linux.zip -d build; fi - pip3 install meson diff --git a/docs/markdown/Creating-Linux-binaries.md b/docs/markdown/Creating-Linux-binaries.md index 084e157..c3b4b64 100644 --- a/docs/markdown/Creating-Linux-binaries.md +++ b/docs/markdown/Creating-Linux-binaries.md @@ -119,7 +119,7 @@ with the following content: #!/bin/bash cd "${0%/*}" -export LD_LIBRARY_PATH="`pwd`/lib" +export LD_LIBRARY_PATH="$(pwd)/lib" bin/myapp ``` |