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
As a script developer, I should be able to specify required program used in the script. If the program is not found or not installed, the script should fail fast. Example:
crashd_config(requires=["docker", "ssh"])
In the previous snippet, if program docker and ssh are not found on the local machine's execution path, the script should fail.
The text was updated successfully, but these errors were encountered:
As a script developer, I should be able to specify required program used in the script. If the program is not found or not installed, the script should fail fast. Example:
In the previous snippet, if program
docker
andssh
are not found on the local machine's execution path, the script should fail.The text was updated successfully, but these errors were encountered: