From b5546c6eea9ec268a61b58a47996a7976aa8deea Mon Sep 17 00:00:00 2001 From: Jon Pugh Date: Thu, 26 Mar 2020 11:45:27 -0400 Subject: [PATCH] Revert "Set full path to get this working for now. Once YamlTasks can determine a composer project's bin-dir, we can set PATH and remvove the "bin/"" This reverts commit c50a0fa7746a511785b9d216dab8307f2bb2ba92. --- tasks.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tasks.yml b/tasks.yml index 3e33b02409..37fb6080b3 100644 --- a/tasks.yml +++ b/tasks.yml @@ -17,15 +17,15 @@ va/deploy/0-composer: va/deploy/1-cache: description: Rebuild Drupal caches - command: bin/drush $DRUSH_ALIAS cr + command: drush $DRUSH_ALIAS cr va/deploy/2-update: description: Run Drupal Update Hooks - command: bin/drush $DRUSH_ALIAS updatedb --yes + command: drush $DRUSH_ALIAS updatedb --yes va/deploy/3-config: - - bin/drush $DRUSH_ALIAS cim --yes - - bin/drush $DRUSH_ALIAS cr + - drush $DRUSH_ALIAS cim --yes + - drush $DRUSH_ALIAS cr va/tests/phpcs: description: PHP CodeSniffer @@ -37,7 +37,7 @@ va/tests/phplint: va/tests/phpunit: description: PHPUnit - command: bin/phpunit --exclude-group disabled tests/phpunit --colors=always + command: phpunit --exclude-group disabled tests/phpunit --colors=always va/tests/accessibility: description: accessibility test with axe-webdriverjs for 508 compliance @@ -59,4 +59,4 @@ va/tests/behat: description: Behat Tests command: | cd tests/behat - ../../bin/behat --colors + behat --colors