weston -- command should propagate the exit status
This is what other similar wrappers do, and it is useful for use in testsuites.
Compare
$ xvfb-run false
$ echo $?
1
or
$ mutter -- false
$ echo $?
1
to
$ weston -- false
$ echo $?
0
Due to an influx of spam, we have had to impose restrictions on new accounts. Please see this wiki page for instructions on how to get full permissions. Sorry for the inconvenience.
This is what other similar wrappers do, and it is useful for use in testsuites.
Compare
$ xvfb-run false
$ echo $?
1
or
$ mutter -- false
$ echo $?
1
to
$ weston -- false
$ echo $?
0