mirror of
https://gitee.com/jack_whh/ssh-scp-ssh-pipelines.git
synced 2026-03-09 22:42:55 +08:00
if else not return
This commit is contained in:
8
app.py
8
app.py
@@ -113,22 +113,24 @@ def processes():
|
||||
|
||||
if not INPUT_FIRST_SSH:
|
||||
print("SSH-SCP-SSH no first_ssh input found")
|
||||
return
|
||||
else:
|
||||
print("+++++++++++++++++++Pipeline: RUNNING FIRST SSH+++++++++++++++++++")
|
||||
connect(lambda c: ssh_process(c, INPUT_FIRST_SSH))
|
||||
|
||||
if not INPUT_SCP:
|
||||
print("SSH-SCP-SSH no scp input found")
|
||||
return
|
||||
else:
|
||||
print("+++++++++++++++++++Pipeline: RUNNING SCP+++++++++++++++++++")
|
||||
connect(lambda c: scp_process(c, INPUT_SCP))
|
||||
|
||||
if not INPUT_LAST_SSH:
|
||||
print("SSH-SCP-SSH no last_ssh input found")
|
||||
return
|
||||
else:
|
||||
print("+++++++++++++++++++Pipeline: RUNNING LAST SSH+++++++++++++++++++")
|
||||
connect(lambda c: ssh_process(c, INPUT_LAST_SSH))
|
||||
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
processes()
|
||||
|
||||
Reference in New Issue
Block a user