From 8df3db566a3a937b45ebf11adb90d265e6f5e2d4 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sun, 17 Nov 2019 20:45:02 +0100 Subject: initial checking of customized version 1.0rc9 --- setup/composerit2.pl | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 setup/composerit2.pl (limited to 'setup/composerit2.pl') diff --git a/setup/composerit2.pl b/setup/composerit2.pl new file mode 100755 index 0000000..04bd81b --- /dev/null +++ b/setup/composerit2.pl @@ -0,0 +1,29 @@ +#!/usr/bin/perl +use CGI; + +$cgi=new CGI; +print $cgi->header( + -expires => 'Sat, 26 Jul 1997 05:00:00 GMT', + -Pragma => 'no-cache', + -Cache_Control => join(', ', qw(private no-cache no-store must-revalidate max-age=0 pre-check=0 post-check=0)), +); +print ' + + + +Flyspray Install - php composer.phar install + + + +'; + +print '

Trying to install packages

'; +print 'Go to setup page'; +#chdir('..'); +@step2= `export COMPOSER_HOME=. ; php composer.phar --working-dir=.. install 2>&1`; +print '
> php composer.phar install
'; +print '
';
+foreach (@step2) {
+    print;
+}
+print '
'; -- cgit v1.2.3-54-g00ecf