We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
(From dokku/dokku#1156)
In a bare install, if I run a valid command, it displays output and exits with 0 (normally). (assume dokku-remote is an alias for ssh dokku@....)
➜ ~ dokku-remote apps; echo $? =====> My Apps ruby-sample 0
If I give an invalid command dokku helps me with message and exit code.
➜ ~ dokku-remote appsitypo; echo $? ! appsi is not a dokku command. ! See dokku help for a list of available commands. 1
appsi
dokku help
Now if I install a dokku-pg-plugin
cd /var/lib/dokku/plugins git clone https://github.com/Kloadut/dokku-pg-plugin postgresql dokku plugins-install
the situation changes for worse:
➜ ~ dokku-remote apps; echo $? =====> My Apps ruby-sample 0 ➜ ~ dokku-remote appsitypo; echo $? 0
I have not needed that yet, but it might be pretty annoying for scripting-stuff-situations.
The text was updated successfully, but these errors were encountered:
use DOKKU_NOT_IMPLEMENTED_EXIT on unknown command, fix Kloadut#72
a593a99
use DOKKU_NOT_IMPLEMENTED_EXIT on unknown command
DOKKU_NOT_IMPLEMENTED_EXIT
64f8c81
Closes Kloadut#72 Closes Kloadut#73
No branches or pull requests
(From dokku/dokku#1156)
In a bare install, if I run a valid command, it displays output and exits with 0 (normally).
(assume dokku-remote is an alias for ssh dokku@....)
➜ ~ dokku-remote apps; echo $?
=====> My Apps
ruby-sample
0
If I give an invalid command dokku helps me with message and exit code.
➜ ~ dokku-remote appsitypo; echo $?
!
appsi
is not a dokku command.! See
dokku help
for a list of available commands.1
Now if I install a dokku-pg-plugin
cd /var/lib/dokku/plugins
git clone https://github.com/Kloadut/dokku-pg-plugin postgresql
dokku plugins-install
the situation changes for worse:
➜ ~ dokku-remote apps; echo $?
=====> My Apps
ruby-sample
0
➜ ~ dokku-remote appsitypo; echo $?
0
I have not needed that yet, but it might be pretty annoying for scripting-stuff-situations.
The text was updated successfully, but these errors were encountered: