Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.settings
/.buildpath
/.project
/README
13 changes: 0 additions & 13 deletions README

This file was deleted.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# phing-tasks

forked from https://github.com/mrowl/phing-tasks
7 changes: 7 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "phing/phing-tasks",
"description": "tasks created or borrowed for phing.",
"type": "library",
"keywords": ["phing", "tasks"],
"minimum-stability": "dev"
}
2 changes: 1 addition & 1 deletion tasks/my/JsCompileTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function main()
}
$commandBase = 'java -jar ' . $this->compilerPath;
exec($commandBase . ' --helpshort 2>&1', $output);
if (!preg_match('/"--helpshort" is not a valid option/', implode('', $output))) {
if (!preg_match('/"--helpshort" /', implode('', $output))) {
throw new BuildException('Closure Compiler not found!');
}
foreach ($this->filesets as $fs) {
Expand Down