-
-
Notifications
You must be signed in to change notification settings - Fork 424
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Command line options do nothing #109
Labels
Comments
Hi @moimael, Thanks for the report. That's weird, it works for me.
Just in case, if you don't see anything on |
Hi, $ hotel add 'rails s -b 0.0.0.0 -p $PORT' --port 43269
Create ~/.hotel/servers/universalavenue.json
Output No log file specified (use '-o app.log')
$ cat ~/.hotel/servers/universalavenue.json
{
"cwd": "/home/mlavault/Development/UniversalAvenue",
"cmd": "rails s -b 0.0.0.0 -p $PORT",
"env": {
"PATH": "/home/mlavault/.rbenv/shims:/home/mlavault/.rbenv/bin:/usr/local/heroku/bin:/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/home/mlavault/.local/bin:/home/mlavault/bin"
}
}
$ hotel add 'rails s -b 0.0.0.0 -p $PORT' --port --name test
Create ~/.hotel/servers/universalavenue.json
Output No log file specified (use '-o app.log')
$ cat ~/.hotel/servers/universalavenue.json
{
"cwd": "/home/mlavault/Development/UniversalAvenue",
"cmd": "rails s -b 0.0.0.0 -p $PORT",
"env": {
"PATH": "/home/mlavault/.rbenv/shims:/home/mlavault/.rbenv/bin:/usr/local/heroku/bin:/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/home/mlavault/.local/bin:/home/mlavault/bin"
}
} |
I can reproduce the issue if I use |
should be good in |
Thanks ! :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Whenever I try to add --port or --name to the command line, it does nothing and the option I pass are never set. I use 0.5.1 and it worked before.
Thanks
The text was updated successfully, but these errors were encountered: