Add instructions to install the development version using tarballs
This commit is contained in:
parent
64964c9e2c
commit
2d847f145f
1 changed files with 12 additions and 0 deletions
12
README.md
12
README.md
|
@ -30,6 +30,18 @@ gzip --stdout --decompress dokuwiki-childrenpages-1.1.0.tar.gz | tar xf - --stri
|
||||||
rm dokuwiki-childrenpages-1.1.0.tar.gz
|
rm dokuwiki-childrenpages-1.1.0.tar.gz
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Latest development version
|
||||||
|
|
||||||
|
Assuming the root directory of your DokuWiki installation is `/srv/dokuwiki`:
|
||||||
|
```
|
||||||
|
DOKUWIKI_PATH=/srv/dokuwiki
|
||||||
|
TARBALL_URL=https://forge.dotslashplay.it/vv221/dokuwiki-childrenpages/-/archive/master/dokuwiki-childrenpages-master.zip
|
||||||
|
curl "$TARBALL_URL" > dokuwiki-childrenpages-master.tar.gz
|
||||||
|
mkdir --parents "$DOKUWIKI_PATH/lib/plugins/childrenpages"
|
||||||
|
gzip --stdout --decompress dokuwiki-childrenpages-master.tar.gz | tar xf - --strip-components=1 --directory="$DOKUWIKI_PATH/lib/plugins/childrenpages"
|
||||||
|
rm dokuwiki-childrenpages-master.tar.gz
|
||||||
|
```
|
||||||
|
|
||||||
### Installation using git
|
### Installation using git
|
||||||
|
|
||||||
#### Requirements
|
#### Requirements
|
||||||
|
|
Loading…
Reference in a new issue