From: Jan Schneider Date: Tue, 27 Apr 2010 14:12:30 +0000 (+0200) Subject: Framework script breaks release again, I'm not up for fixing this again. Error out. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=dd74f2748feb8ab90859392e068e1ddbc0d84417;p=horde.git Framework script breaks release again, I'm not up for fixing this again. Error out. --- diff --git a/framework/Release/lib/Horde/Release.php b/framework/Release/lib/Horde/Release.php index 75aa42338..cf21acbf3 100644 --- a/framework/Release/lib/Horde/Release.php +++ b/framework/Release/lib/Horde/Release.php @@ -466,10 +466,9 @@ class Horde_Release die("\nThere was an error running the command\n$cmd\n"); } print "Installing framework packages\n"; - if (file_exists("./$directory/scripts/create-symlinks.php")) { - system("php ./$directory/scripts/create-symlinks.php --copy --src=./$directory/framework --dest=./$directory/lib"); - } else { - system("horde-fw-symlinks.php --copy --src ./$directory/framework --dest ./$directory/lib"); + passthru("install_framework --copy --src ./$directory/framework --dest ./$directory/lib", $result); + if ($result) { + exit; } } }