Skip to content

Hide executing command

Taichiro Suzuki edited this page Oct 23, 2018 · 3 revisions

Can I hide executing commands?

Especially under CI, you would like to hide your executing commands since some of them include some secret parameters. From version 0.1.14, you can hide them by hide option.

hide_command:
  commands:
    - sleep 1
    - echo "Can you see me?"
  hide:
    true

The result is

2017-09-13 22 34 17