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
In some cases the directory "#{shared_path}/jetty" will be created even if the task jetty:install fails.
"#{shared_path}/jetty"
jetty:install
Currently, the task to check to see if jetty is installed just looks for the existence of this directory. If it exists, then it won't do the install.
It should instead check for something else that indicates a previous install was successful.. e.g. check for the file "#{shared_path}/jettystart.jar"
"#{shared_path}/jettystart.jar"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In some cases the directory
"#{shared_path}/jetty"
will be created even if the taskjetty:install
fails.Currently, the task to check to see if jetty is installed just looks for the existence of this directory. If it exists, then it won't do the install.
It should instead check for something else that indicates a previous install was successful.. e.g. check for the file
"#{shared_path}/jettystart.jar"
The text was updated successfully, but these errors were encountered: