From abd30eb3388fc566feea97e3ec8052049f6e7c3e Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Wed, 15 Aug 2012 17:26:33 +0300 Subject: [PATCH 1/3] Fix contribution page links in documentation. --- laravel/documentation/contents.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/laravel/documentation/contents.md b/laravel/documentation/contents.md index 88a7ac24..d29b3908 100644 --- a/laravel/documentation/contents.md +++ b/laravel/documentation/contents.md @@ -113,6 +113,6 @@ ### Contributing -- [Laravel on GitHub](docs/contrib/github) -- [Command Line](docs/contrib/command-line) -- [TortoiseGit](docs/contrib/tortoisegit) +- [Laravel on GitHub](/docs/contrib/github) +- [Command Line](/docs/contrib/command-line) +- [TortoiseGit](/docs/contrib/tortoisegit) From 7e11bb74313fe6f388253b45d450390b663f39a7 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Fri, 7 Sep 2012 14:32:12 +0200 Subject: [PATCH 2/3] Delete phpunit.xml file. Looks like that was committed accidentally. --- phpunit.xml | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 phpunit.xml diff --git a/phpunit.xml b/phpunit.xml deleted file mode 100644 index d7a799bf..00000000 --- a/phpunit.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - /Users/taylor/Code/Laravel/framework/laravel/tests/cases - - - \ No newline at end of file From 9348046d0eaef216eaa7e2f2c2506c25bbad2086 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Fri, 7 Sep 2012 14:32:37 +0200 Subject: [PATCH 3/3] Fix dynamically generated phpunit.xml file not being deleted automatically in the test runner. --- laravel/cli/tasks/test/runner.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/cli/tasks/test/runner.php b/laravel/cli/tasks/test/runner.php index b34e5225..0d9fb4e6 100644 --- a/laravel/cli/tasks/test/runner.php +++ b/laravel/cli/tasks/test/runner.php @@ -86,9 +86,9 @@ class Runner extends Task { // fix the spaced directories problem when using the command line // strings with spaces inside should be wrapped in quotes. - $path = escapeshellarg($path); + $esc_path = escapeshellarg($path); - passthru('phpunit --configuration '.$path, $status); + passthru('phpunit --configuration '.$esc_path, $status); @unlink($path);