554 @param arguments list of arguments for the process (list of strings) |
554 @param arguments list of arguments for the process (list of strings) |
555 @param workingDir working directory for the process (string) |
555 @param workingDir working directory for the process (string) |
556 @return flag indicating normal exit (boolean) |
556 @return flag indicating normal exit (boolean) |
557 """ |
557 """ |
558 if proc is None: |
558 if proc is None: |
559 return |
559 return False |
560 |
560 |
561 if workingDir: |
561 if workingDir: |
562 proc.setWorkingDirectory(workingDir) |
562 proc.setWorkingDirectory(workingDir) |
563 proc.start(program, arguments) |
563 proc.start(program, arguments) |
564 procStarted = proc.waitForStarted(5000) |
564 procStarted = proc.waitForStarted(5000) |