This commit is contained in:
@@ -17,6 +17,11 @@ def main() -> int:
|
||||
for path in TARGETS:
|
||||
try:
|
||||
print(f"checking: {path}")
|
||||
if not path.exists():
|
||||
if path.name == "appsettings.Development.json":
|
||||
print(f"SKIP: {path} not present in this checkout")
|
||||
continue
|
||||
raise FileNotFoundError(path)
|
||||
data = json.loads(path.read_text(encoding="utf-8"))
|
||||
actual = data["ConnectionStrings"]["Default"]
|
||||
except Exception as exc:
|
||||
|
||||
Reference in New Issue
Block a user