my $query = $ENV{'QUERY_STRING'};
sub cmd {
- my @x = qx(cmd." 2>&1");
- print Dumper @x;
+ my ($c) = @_;
+ $c .= " 2>&1";
+ my @x = qx($c);
+ foreach (@x) {
+ print "> ".$_;
+ }
}
+
print "Running Git Update\n";
unless ($query =~ m/stable/) {
print "Undoing changes in config files\n";
cmd("git checkout -- ../config ../temp");
+print "Pulling new data from server\n";
+cmd("git pull ");
unless ($query =~ m/config/) {
print "Copying configuration file folder back\n";