From 272201779bdf2ec94669104228a17c14ecb108dc Mon Sep 17 00:00:00 2001 From: Jamie Burchell Date: Wed, 10 Nov 2021 21:36:20 +0000 Subject: [PATCH] Fix minor typos in comments (#2744) --- recipe/deploy/update_code.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/deploy/update_code.php b/recipe/deploy/update_code.php index de429ba6..39ac8acd 100644 --- a/recipe/deploy/update_code.php +++ b/recipe/deploy/update_code.php @@ -18,7 +18,7 @@ set('branch', function () { set('auto_ssh_keygen', true); // Sets deploy:update_code strategy. -// Can we one of: +// Can be one of: // - archive // - clone (if you need `.git` dir in your {{release_path}}) set('update_code_strategy', 'archive'); @@ -89,7 +89,7 @@ task('deploy:update_code', function () { run("$git remote update 2>&1"); - // Copy to release_path.a + // Copy to release_path. if (get('update_code_strategy') === 'archive') { run("$git archive $at | tar -x -f - -C {{release_path}} 2>&1"); } else if (get('update_code_strategy') === 'clone') {