From 83c324cb1fd12097f8d12b9ce00d25d2f63c18a2 Mon Sep 17 00:00:00 2001 From: Jesse Leite Date: Sun, 6 Oct 2019 18:46:46 -0400 Subject: [PATCH] Remove `mkdir` command examples in favour of new `create` directive examples. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c08a438..10b0f4e 100644 --- a/README.md +++ b/README.md @@ -267,8 +267,8 @@ command itself. ```yaml - shell: - - mkdir -p ~/src - - [mkdir -p ~/downloads, Creating downloads directory] + - chsh -s $(which zsh) + - [chsh -s $(which zsh), Making zsh the default shell] - command: read var && echo Your variable is $var stdin: true