mirror of
https://gitee.com/jack_whh/ssh-scp-ssh-pipelines.git
synced 2026-03-09 22:42:55 +08:00
11 lines
184 B
Bash
Executable File
11 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "+++++++++++++++++++STARTING PIPELINES+++++++++++++++++++"
|
|
|
|
python3 /opt/tools/app.py
|
|
RET = $?
|
|
|
|
echo "+++++++++++++++++++END PIPELINES+++++++++++++++++++"
|
|
|
|
exit $RET
|