From a4a6e3b8f63ff8416917a6cbce9f2c4ca0004d2a Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Wed, 31 Jul 2019 12:54:46 -0700 Subject: [PATCH] Fix serve help message. Fixes #219. --- CHANGELOG.md | 3 +++ server/src/bin.rs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0341c8bb..068732e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/server/src/bin.rs b/server/src/bin.rs index 7f5b80e7..2bf96da7 100644 --- a/server/src/bin.rs +++ b/server/src/bin.rs @@ -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 =>