Fix serve help message. Fixes #219.

This commit is contained in:
Lucien Greathouse
2019-07-31 12:54:46 -07:00
parent d788dd3042
commit a4a6e3b8f6
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
# Rojo Changelog
## Unreleased Changes
* Fixed default port documentation in `rojo serve --help` ([#219](https://github.com/rojo-rbx/rojo/issues/219))
## [0.5.0 Alpha 12](https://github.com/rojo-rbx/rojo/releases/tag/v0.5.0-alpha.12) (July 2, 2019)
* Added `.meta.json` files
* `init.meta.json` files replace `init.model.json` files from Rojo 0.4.x ([#183](https://github.com/rojo-rbx/rojo/pull/183))

View File

@@ -43,7 +43,7 @@ fn main() {
(@subcommand serve =>
(about: "Serves the project's files for use with the Rojo Studio plugin.")
(@arg PROJECT: "Path to the project to serve. Defaults to the current directory.")
(@arg port: --port +takes_value "The port to listen on. Defaults to 8000.")
(@arg port: --port +takes_value "The port to listen on. Defaults to 34872.")
)
(@subcommand build =>