ci: add etag check to debugger properties download

This commit is contained in:
FalsePattern 2025-04-11 17:02:11 +02:00
parent d5359e5816
commit 9913ceb67e
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23

View file

@ -14,6 +14,8 @@ sourceSets["main"].resources.srcDir(genOutputDir)
tasks {
register<Download>("downloadProps") {
onlyIfModified(true)
useETag(true)
src("https://falsepattern.com/zigbrains/msvc.properties")
dest(genOutputDir.map { it.file("msvc.properties") })
}