Fix error

This commit is contained in:
Walter Dal Mut 2012-06-04 12:41:13 +02:00
parent 8a34d98a65
commit 382c97eee7

View file

@ -9,7 +9,7 @@ require_once 'wdm/debian/Autoloader.php';
$control = new \wdm\debian\control\StandardFile(); $control = new \wdm\debian\control\StandardFile();
$control $control
->setPackage("my-package-name") ->setPackageName("my-package-name")
->setVersion("0.1.1") ->setVersion("0.1.1")
->setDepends(array("php5", "php5-cli", "php5-xsl")) ->setDepends(array("php5", "php5-cli", "php5-xsl"))
->setInstalledSize(4096) ->setInstalledSize(4096)
@ -67,4 +67,4 @@ echo "Goodbye Cruel World"
exit 0 exit 0
``` ```