mirror of
https://github.com/servo/servo.git
synced 2025-06-13 10:54:29 +00:00
auto merge of #5405 : kylc/servo/fix_mach_help_msg, r=Ms2ger
Running `./mach run --release` without a release profile built suggests running `./mach build--release`. This PR adds a space before `--release`.
This commit is contained in:
commit
b20cc69a7a
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ class MachCommands(CommandBase):
|
|||
|
||||
print("The %s profile is not built. Please run './mach build%s' "
|
||||
"and try again." % ("release" if release else "dev",
|
||||
"--release" if release else ""))
|
||||
" --release" if release else ""))
|
||||
sys.exit()
|
||||
|
||||
@Command('run',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue