Changeset 33403
- Timestamp:
- 2019-08-12T15:07:23+12:00 (4 years ago)
- Location:
- main/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/gli/src/org/greenstone/gatherer/util/SafeProcess.java
r31970 r33403 305 305 306 306 307 if(this.envp == null ) {307 if(this.envp == null && this.dir == null) { 308 308 prcs = rt.exec(this.command_args); 309 } else { // launch process using cmd str with env params 310 309 } else { // launch process using cmd str with env params and/or exec-dir 310 311 //if(this.envp != null) { 311 312 //log("Environment: "); 312 313 //for(int i = 0; i < envp.length; i++) { 313 314 // log("\t" + envp[i]); 315 //} 314 316 //} 315 317 -
main/trunk/greenstone3/src/java/org/greenstone/util/SafeProcess.java
r31720 r33403 280 280 281 281 282 if(this.envp == null ) {282 if(this.envp == null && this.dir == null) { 283 283 prcs = rt.exec(this.command_args); 284 } else { // launch process using cmd str with env params 284 } else { // launch process using cmd str with env params and/or exec-dir 285 285 286 286 if(this.dir == null) {
Note:
See TracChangeset
for help on using the changeset viewer.