nebulab/pulsar

Does pulsar have --dry-run option?

Closed this issue ยท 2 comments

like cap local deploy --dry-run --trace

@zx1986 with pulsar's latest version you can pass pretty much whatever you want to capistrano by using the task command.

The command you're talking about should be something like:

pulsar task your_application production "deploy --dry-run --trace"

The " are needed because cap args need to be passed as the last argument.

If that works for you I think we can close this ๐Ÿ˜„

It works perfect! you are awesome! thanks!