You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
Create a directory with the following file and file contents:
# invalid.pp
class invalid {}
Run prm exec puppetlabs/puppet-lint --codedir /path/to/above/directory -toolArgs=invalid.pp
Observe the exiting error message:
ERR Error executing tool puppetlabs/puppet-lint: Tool exited with code: 1
Due to the fact that puppet-lint returns a non-zero exit code, we will treat this as an error in the execution of the tool, rather than the tool running and exiting with a non-zero exit code, to relay information back to the user. A subtle difference.
We will exit here, rather than continuing on to inspect and classify the exit status here
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
prm exec puppetlabs/puppet-lint --codedir /path/to/above/directory -toolArgs=invalid.pp
Due to the fact that
puppet-lint
returns a non-zero exit code, we will treat this as an error in the execution of the tool, rather than the tool running and exiting with a non-zero exit code, to relay information back to the user. A subtle difference.We will exit here, rather than continuing on to inspect and classify the exit status here
The text was updated successfully, but these errors were encountered: