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
When a config containing any shell command (execute action) is triggered without the use of the --unsafe flag, a CLI interrogative interrupts the routine with a warning and asks, Do you approve? (YES/no):. This should be more like Do you approve? (y/N).
Use something like answer.strip.match(/[y|Y|yes|YES]/) to reject everything else.
The text was updated successfully, but these errors were encountered:
When a config containing any shell command (execute action) is triggered without the use of the
--unsafe
flag, a CLI interrogative interrupts the routine with a warning and asks,Do you approve? (YES/no):
. This should be more likeDo you approve? (y/N)
.Use something like
answer.strip.match(/[y|Y|yes|YES]/)
to reject everything else.The text was updated successfully, but these errors were encountered: