use output destination fro DN if runOnce. #262

This commit is contained in:
clinton-hall 2014-02-14 15:25:41 +10:30
commit d6ba16355b

View file

@ -363,7 +363,10 @@ def external_script(outputDestination):
command.append(filePath) command.append(filePath)
continue continue
elif param == "DN": elif param == "DN":
command.append(dirpath) if user_script_runOnce == 1:
command.append(outputDestination)
else:
command.append(dirpath)
continue continue
else: else:
command.append(param) command.append(param)