Skip to content

Commit

Permalink
[FIX] added --ignore-scripts flag to docs for npm package installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
thibsy committed Oct 18, 2022
1 parent 1e7474e commit 1cf45f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/configuration/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ This requires that the php dependency manager [composer](https://getcomposer.org
is available in your $PATH.

```
npm install --omit=dev
npm install --omit=dev --ignore-scripts
```

This requires that the javascript dependency manager [npm](https://https://www.npmjs.com/)
Expand Down Expand Up @@ -629,7 +629,7 @@ your ILIAS basepath (e.g. `/var/www/html/`):
```
git pull
composer install --no-dev
npm install --omit-dev
npm install --omit-dev --ignore-scripts
```

if you follow a branch or
Expand All @@ -638,7 +638,7 @@ if you follow a branch or
git fetch
git checkout v7.1
composer install --no-dev
npm install --omit-dev
npm install --omit-dev --ignore-scripts
```

if you use tags to pin a specific ILIAS version.
Expand All @@ -663,7 +663,7 @@ layout templates. Then execute the following commands in your ILIAS basepath
git fetch
git checkout release_X
composer install --no-dev
npm install --omit-dev
npm install --omit-dev --ignore-scripts
```

Replace `release_X` with the branch or tag you actually want to upgrade to. You can
Expand Down

0 comments on commit 1cf45f1

Please sign in to comment.