Skip to content

Commit

Permalink
fix sail binary references (#7954)
Browse files Browse the repository at this point in the history
  • Loading branch information
timacdonald authored May 28, 2022
1 parent 7fbbf87 commit 00562e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion artisan.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ php artisan help migrate
If you are using [Laravel Sail](/docs/{{version}}/sail) as your local development environment, remember to use the `sail` command line to invoke Artisan commands. Sail will execute your Artisan commands within your application's Docker containers:

```shell
./sail artisan list
./vendor/bin/sail artisan list
```

<a name="tinker"></a>
Expand Down
4 changes: 2 additions & 2 deletions mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ npm -v
You can easily install the latest version of Node and NPM using simple graphical installers from [the official Node website](https://nodejs.org/en/download/). Or, if you are using [Laravel Sail](/docs/{{version}}/sail), you may invoke Node and NPM through Sail:

```shell
./sail node -v
./sail npm -v
./vendor/bin/sail node -v
./vendor/bin/sail npm -v
```

<a name="installing-laravel-mix"></a>
Expand Down

0 comments on commit 00562e4

Please sign in to comment.