blob: bc46e52f68d83977f86cdcce22e7143e7be8158f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- grude/grude.orig Tue Jun 24 11:38:38 2003
+++ grude/grude Tue Jun 24 11:39:18 2003
@@ -1418,7 +1418,7 @@
$erro = 'Can\'t save file components';
goto ERRO;
}
- if (system('tar c * | gzip -c > archive') != 0) {
+ if (system('tar cf - * | gzip -c > archive') != 0) {
$erro = 'Can\'t create compressed file';
goto ERRO;
}
|