1
0
Fork 0
mirror of synced 2024-06-16 06:01:09 -04:00
dotbot/sample.conf.yaml

27 lines
406 B
YAML
Raw Normal View History

- defaults:
link:
relink: true
create: true
- clean: ['~']
- conditional:
if:
tty: true
then:
- shell:
- 'echo "Running from a TTY"'
- conditional:
if:
shell: "command -v python"
then:
- shell:
- 'echo "python is available"'
- conditional:
if: "command -v foo"
else:
- shell:
- 'echo "foo is not available"'