From 3301cb99d60546c50ded03fb50cf3fca05ea61be Mon Sep 17 00:00:00 2001 From: Wesley Kerfoot Date: Sat, 5 May 2018 14:48:54 -0400 Subject: [PATCH] change example slightly --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b2ab0c7..a16e300 100644 --- a/README.md +++ b/README.md @@ -23,14 +23,14 @@ Example: (with-shell-vars (["FOO" "BAR"]) (become "alice" - (copy-dir "../myode" "/home/alice/mycode") + (copy-dir "../myode" "/home/alice/mycode") - (with-cwd "/home/alice/mycode" + (with-cwd "/home/alice/mycode" - (become "root" - (exec "pip install pipenv")) + (become "root" + (exec "pip install pipenv")) - (with-cwd "project" - (exec "pipenv install"))))))) + (with-cwd "project" + (exec "pipenv install"))))))) (deploy) ```