Skip to content

Commit

Permalink
Don't trim the trailing comma after each developer type.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Jun 29, 2015
1 parent 2a17e3f commit 3ad7cb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/Conductor/Package2XmlToComposer.php
Original file line number Diff line number Diff line change
Expand Up @@ -579,9 +579,9 @@ public function convert($output_file = null)
$j .= $tab . $tab . $tab . "\"role\": \"$atype\"\n";
$j .= $tab . $tab . "},\n";
}
$j = rtrim($j, ",\n") . "\n";
}
}
$j = rtrim($j, ",\n") . "\n";
$j .= $tab . "],\n";

if (isset($this->data['version']['release']) && $this->write_version_to_composer) {
Expand Down

0 comments on commit 3ad7cb9

Please sign in to comment.