Fix condition

This commit is contained in:
Aaron Dewes 2023-08-29 10:42:32 +00:00
parent d35f7fbcc4
commit c1e92d40f6

2
scripts/configure vendored
View File

@ -324,7 +324,7 @@ else:
# Run ./scripts/app get-implementation lightning to get the implementation
# If it fails, install the LND app and set the implementation to LND
if not reconfiguring:
if reconfiguring:
try:
implementation = subprocess.check_output("./scripts/app get-implementation lightning", shell=True).decode("utf-8").strip()
except: