Changeset 2605
- Timestamp:
- 10/03/07 01:44:30 (1 year ago)
- Files:
-
- trunk/install/snapshot/srcsnapshot.d (modified) (5 diffs)
- trunk/install/windows/build_tango.d (modified) (1 diff)
- trunk/tango/io/model/IBuffer.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/install/snapshot/srcsnapshot.d
r2164 r2605 129 129 auto bld = new Process(buildcmd, null); 130 130 bld.execute(); 131 Stderr. conduit.copy(bld.stderr);131 Stderr.stream.copy(bld.stderr); 132 132 result = bld.wait(); 133 133 if (result.reason != Process.Result.Exit) { … … 143 143 auto chmod = new Process("chmod 644 " ~ chmodfiles, null); 144 144 chmod.execute(); 145 Stderr. conduit.copy(chmod.stderr);145 Stderr.stream.copy(chmod.stderr); 146 146 result = chmod.wait(); 147 147 if (result.reason != Process.Result.Exit) { … … 154 154 auto rm = new Process("rm -rf " ~ rmpaths, null); 155 155 rm.execute(); 156 Stderr. conduit.copy(rm.stderr);156 Stderr.stream.copy(rm.stderr); 157 157 result = rm.wait(); 158 158 if (result.reason != Process.Result.Exit) { … … 168 168 auto targz = new Process("tar czf " ~ packdirdate ~ ".tar.gz " ~ packdirdate, null); 169 169 targz.execute(); 170 Stderr. conduit.copy(targz.stderr);170 Stderr.stream.copy(targz.stderr); 171 171 result = targz.wait(); 172 172 if (result.reason != Process.Result.Exit) { … … 178 178 auto zip = new Process("zip -r " ~ packdirdate ~ " " ~ packdirdate, null); 179 179 zip.execute(); 180 Stderr. conduit.copy(zip.stderr);180 Stderr.stream.copy(zip.stderr); 181 181 result = zip.wait(); 182 182 if (result.reason != Process.Result.Exit) { trunk/install/windows/build_tango.d
r2465 r2605 93 93 Stdout( '\n' ); 94 94 proc.execute(); 95 Stdout. conduit.copy( proc.stdout );96 Stdout. conduit.copy( proc.stderr );95 Stdout.stream.copy( proc.stdout ); 96 Stdout.stream.copy( proc.stderr ); 97 97 auto result = proc.wait(); 98 98 if( result.reason != Process.Result.Exit ) trunk/tango/io/model/IBuffer.d
r2542 r2605 141 141 legitimate on Stdout and Stderr. For example: 142 142 --- 143 Stdout. conduit.copy (new FileConduit ("readme.txt"));143 Stdout.stream.copy (new FileConduit ("readme.txt")); 144 144 --- 145 145












