Skip to content

Commit

Permalink
Make sure log dir exists
Browse files Browse the repository at this point in the history
  • Loading branch information
christeredvartsen committed Sep 12, 2019
1 parent 707061e commit 2a19092
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion composer.json
Expand Up @@ -89,6 +89,9 @@
"cd docs; make spelling",
"cd docs; make html"
],
"start": "php -S localhost:8080 -t ./public tests/behat/router.php > build/logs/httpd.log 2>&1 &"
"start": [
"mkdir -p build/logs",
"php -S localhost:8080 -t ./public tests/behat/router.php > build/logs/httpd.log 2>&1 &"
]
}
}

0 comments on commit 2a19092

Please sign in to comment.