Skip to content

Commit

Permalink
renamed 'vendor' to 'tools'
Browse files Browse the repository at this point in the history
(Because vendor sounds like tumor, especially like nador).
  • Loading branch information
dg committed Sep 28, 2012
1 parent 9d1c08f commit 65d4f85
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,2 +1,2 @@
/vendor
/tools
/composer.lock
3 changes: 3 additions & 0 deletions composer.json
Expand Up @@ -21,6 +21,9 @@
"require-dev": {
"nette/tester": "@dev"
},
"config": {
"vendor-dir": "tools"
},
"autoload": {
"files": ["Nette/loader.php"]
},
Expand Down
2 changes: 1 addition & 1 deletion tests/Nette/bootstrap.php
Expand Up @@ -8,7 +8,7 @@
*/


require __DIR__ . '/../../vendor/nette/tester/Tester/bootstrap.php';
require __DIR__ . '/../../tools/nette/tester/Tester/bootstrap.php';
require __DIR__ . '/../../Nette/loader.php';


Expand Down
2 changes: 1 addition & 1 deletion tests/RunTests.bat
@@ -1,6 +1,6 @@
@ECHO OFF

SET testRunner="%~dp0..\vendor\nette\tester\Tester\RunTests.phpc"
SET testRunner="%~dp0..\tools\nette\tester\Tester\RunTests.phpc"

IF NOT EXIST %testRunner% (
ECHO Nette Tester is missing. You can install it using Composer:
Expand Down
2 changes: 1 addition & 1 deletion tests/run-tests.sh
Expand Up @@ -4,7 +4,7 @@
dir=$(cd `dirname $0` && pwd)

# Path to test runner script
runnerScript="$dir/../vendor/nette/tester/Tester/RunTests.phpc"
runnerScript="$dir/../tools/nette/tester/Tester/RunTests.phpc"
if [ ! -f "$runnerScript" ]; then
echo "Nette Tester is missing. You can install it using Composer:" >&2
echo "php composer.phar update --dev." >&2
Expand Down

0 comments on commit 65d4f85

Please sign in to comment.