Escape newline in shell code

This commit is contained in:
Tobias Leich 2021-11-12 13:09:50 +01:00 committed by Johannes Meyer
parent d151822348
commit 93546dd493
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ Download or clone this repository there (e.g. `/usr/share/icinga-php/vendor`) an
```sh
INSTALL_PATH="/usr/share/icinga-php/vendor"
INSTALL_VERSION="v0.10.0"
mkdir "$INSTALL_PATH"
mkdir "$INSTALL_PATH" \
&& wget -q "https://github.com/Icinga/icinga-php-thirdparty/archive/$INSTALL_VERSION.tar.gz" -O - \
| tar xfz - -C "$INSTALL_PATH" --strip-components 1
```