Compare commits

...

2 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] 57518f5dcb fix: correct Python indentation in immich heredoc patch (ct/immich.sh) 2026-07-12 16:21:45 +00:00
copilot-swe-agent[bot] c26bd38099 Initial plan 2026-07-12 16:20:25 +00:00
+2 -2
View File
@@ -340,10 +340,10 @@ old = "(0, sharp_1.default)(input).metadata()"
new = "(0, sharp_1.default)(input, { unlimited: true, limitInputPixels: false }).metadata()"
if new in s:
print('hotfix already there')
elif old in s:
elif old in s:
p.write_text(s.replace(old, new, 1))
print('hotfix applied')
else:
else:
print('pattern not found, skipped')
PY
fi