possible fix for sporadically failing update on Linux

small css refactoring

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4872 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
lotus 17 years ago
parent 74e3a547db
commit 08092b4cc5

@ -151,7 +151,7 @@ public class ConfigUpdate_p {
// not a valid release
// can be also a restart- or deploy-file
File invalid = new File(sb.releasePath, downloaded[j]);
if (!invalid.getName().contains(".bat")) // Windows doesn't like deleted scripts
if (!(invalid.getName().endsWith(".bat") || invalid.getName().endsWith(".sh"))) // Windows & Linux don't like deleted scripts while execution!
invalid.deleteOnExit();
}
}

@ -105,7 +105,12 @@ legend {
text-align:center;
}
input {
margin:0.2em;
margin-top:0px;
margin-bottom:0px;
vertical-align:text-bottom;
}
/* --------------- global classes --------------------- */
@ -600,13 +605,6 @@ form.search.small {
text-align:left;
}
input {
margin:0.2em;
margin-top:0px;
margin-bottom:0px;
vertical-align:bottom;
}
/*----------
<table>, <tr>, <th>, <td>
*/

Loading…
Cancel
Save