This commit is contained in:
qiaofeng1227 2023-07-27 10:09:15 +08:00
parent 028d1103db
commit ac6ba075b4
3 changed files with 3 additions and 2 deletions

View file

@ -30,6 +30,7 @@ jobs:
with:
image: websoft9dev/appmanage
tags: ${{ env.VERSION }}
addLatest: True
registry: docker.io
dockerfile: appmanage/Dockerfile
directory: appmanage

View file

@ -112,7 +112,7 @@ def get_update_list():
local_version = json.loads(op)['VERSION']
except:
local_version = "0.0.0"
version_cmd = "curl" + const.ARTIFACT_URL + "/version.json"
version_cmd = "curl " + const.ARTIFACT_URL + "/version.json"
latest = shell_execute.execute_command_output_all(version_cmd)['result']
version = json.loads(latest)['VERSION']
ret = {}

View file

@ -15,7 +15,7 @@ def execute_command_output_all(cmd_str):
myLogger.info_logger("Start to execute cmd: " + cmd_str)
process = subprocess.run(f'nsenter -m -u -i -n -p -t 1 sh -c "{cmd_str}"', capture_output=True, check=False, text=True, shell=True)
process = subprocess.run(f'nsenter -m -u -i -n -p -t 1 sh -c "{cmd_str}"', capture_output=True, bufsize=65536, check=False, text=True, shell=True)
if process.returncode == 0 and 'Fail' not in process.stdout and 'fail' not in process.stdout and 'Error' not in process.stdout and 'error' not in process.stdout: