Rename build to dist

This commit is contained in:
Oliver Davies 2018-09-04 19:46:58 +01:00
parent 769c4c54bd
commit 036a795cc7
27 changed files with 52 additions and 52 deletions

View file

@ -59,7 +59,7 @@ touch .docksal/commands/phpunit
This will create a new, empty `.docksal/commands/phpunit` file, and now the `phpunit` command is now listed under "Custom commands" when we run `fin`.
![](/build/images/blog/docksal-phpunit-command/1.gif)
![](/dist/images/blog/docksal-phpunit-command/1.gif)
You can write commands with any interpreter. Im going to use bash, so Ill add the shebang to the top of the file.
@ -84,7 +84,7 @@ fin interprets lines starting with `##` as documentation - the first of which it
Now when I run it, I see the new description.
![](/build/images/blog/docksal-phpunit-command/2.gif)
![](/dist/images/blog/docksal-phpunit-command/2.gif)
Any additional lines are used as help text with running `fin help phpunit`. Here Ill add an example command to demonstrate how to run it as well as some more in-depth text about what the command will do.
@ -101,7 +101,7 @@ Any additional lines are used as help text with running `fin help phpunit`. Here
Now when I run `fin help phpunit`, I see the new help text.
![](/build/images/blog/docksal-phpunit-command/3.gif)
![](/dist/images/blog/docksal-phpunit-command/3.gif)
## Adding some content