Skip to content

Commit

Permalink
docs: Use npx now that I know it exists
Browse files Browse the repository at this point in the history
  • Loading branch information
squeek502 committed Jun 17, 2021
1 parent a69040b commit 72a805d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ First, you'll need to have the following installed and accessible via `PATH`:

```
make.bat
node_modules/.bin/gitbook serve
npx gitbook serve
```

### On Linux

```
./make.sh
./node_modules/.bin/gitbook serve
npx gitbook serve
```
6 changes: 3 additions & 3 deletions docs/make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ call npm install

call doxygen
copy /Y "..\README.md" ".\INDEX.md"
call "./node_modules/.bin/moxygen" ./xml --anchors
call "./node_modules/.bin/gitbook" install
call "./node_modules/.bin/gitbook" build
call npx moxygen ./xml --anchors
call npx gitbook install
call npx gitbook build
6 changes: 3 additions & 3 deletions docs/make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ npm install

doxygen
cp -f "../README.md" "./INDEX.md"
./node_modules/.bin/moxygen ./xml --anchors
./node_modules/.bin/gitbook install
./node_modules/.bin/gitbook build
npx moxygen ./xml --anchors
npx gitbook install
npx gitbook build

0 comments on commit 72a805d

Please sign in to comment.