git-svn-id: https://192.168.0.254/svn/Proyectos.ConstruccionesCNJ_Web/trunk@5 a1d75475-e439-6a4c-b115-a3aab481e8ec
15 lines
401 B
HTML
15 lines
401 B
HTML
<?php if ($isWindows): ?>
|
|
<?php foreach ($removeList as $file => $isDir): ?>
|
|
<?php if ($isDir): ?>rmdir <?php else: ?>del <?php endif; ?>
|
|
<?php print str_replace('/', '\\', $file); ?>
|
|
|
|
<?php endforeach; ?>
|
|
<?php else: ?>
|
|
#!/bin/sh
|
|
<?php foreach ($removeList as $file => $isDir): ?>
|
|
<?php if ($isDir): ?>rmdir <?php else: ?>rm <?php endif; ?>
|
|
<?php print $file ?>
|
|
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|