From: Rob H. <for...@us...> - 2002-07-31 19:46:35
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/File In directory usw-pr-cvs1:/tmp/cvs-serv11032/lib/SandWeb/File Modified Files: Unix.pm Log Message: fixed bug in _do_write that was preventing edit/upload from working Index: Unix.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/File/Unix.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -U2 -r1.3 -r1.4 --- Unix.pm 29 Jul 2002 17:46:17 -0000 1.3 +++ Unix.pm 31 Jul 2002 19:46:30 -0000 1.4 @@ -358,5 +358,5 @@ my $filehandle = _shell( method => 'pipe', - command => "dd of=\"$location/$filename 1>/dev/null 2>/dev/null\"", + command => "dd of=\"$location/$filename\"", ); |