Skip to content

Commit

Permalink
Added -sS to curl commands
Browse files Browse the repository at this point in the history
  • Loading branch information
wes-johnson committed Dec 13, 2022
1 parent 80e87d1 commit c526fd0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tck/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ tasks.named("hivemqExtensionJar") { finalizedBy("signExtension") }
val signExtension by tasks.registering {
doLast {
exec {
commandLine = listOf("curl", "-o", "build/hivemq-extension/sparkplug-tck-3.0.0-signed.jar", "-F", "file=@build/hivemq-extension/sparkplug-tck-3.0.0.jar", "https://cbi.eclipse.org/jarsigner/sign")
commandLine = listOf("curl", "-sS", "-o", "build/hivemq-extension/sparkplug-tck-3.0.0-signed.jar", "-F", "file=@build/hivemq-extension/sparkplug-tck-3.0.0.jar", "https://cbi.eclipse.org/jarsigner/sign")
}
}
}
Expand All @@ -272,13 +272,13 @@ val packageTck by tasks.registering {

doLast {
exec {
commandLine = listOf("curl", "-o", "build/hivemq-extension/sparkplug-tck-3.0.0-signed.zip", "-F", "file=@build/hivemq-extension/sparkplug-tck-3.0.0.zip", "https://cbi.eclipse.org/macos/codesign/sign")
commandLine = listOf("curl", "-sS", "-o", "build/hivemq-extension/sparkplug-tck-3.0.0-signed.zip", "-F", "file=@build/hivemq-extension/sparkplug-tck-3.0.0.zip", "https://cbi.eclipse.org/macos/codesign/sign")
}
exec {
commandLine = listOf("python3", "package.py")
}
exec {
commandLine = listOf("curl", "-o", "Eclipse-Sparkplug-TCK-3.0.0-signed.zip", "-F", "[email protected]", "https://cbi.eclipse.org/macos/codesign/sign")
commandLine = listOf("curl", "-sS", "-o", "Eclipse-Sparkplug-TCK-3.0.0-signed.zip", "-F", "[email protected]", "https://cbi.eclipse.org/macos/codesign/sign")
}
}
}
Expand Down

0 comments on commit c526fd0

Please sign in to comment.