app_deploy: fix unbound variable
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
@@ -319,7 +319,7 @@ class AppDeploy(BaseDeploy):
|
||||
except asyncio.CancelledError:
|
||||
raise
|
||||
except Exception:
|
||||
logging.exception(f"Error reading install script: {deps_json}")
|
||||
logging.exception(f"Error reading install script: {inst_path}")
|
||||
return []
|
||||
plines: List[str] = re.findall(r'PKGLIST="(.*)"', data)
|
||||
plines = [p.lstrip("${PKGLIST}").strip() for p in plines]
|
||||
|
Reference in New Issue
Block a user