Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
yunqing-wei committed Sep 20, 2023
1 parent 8c90153 commit ee738e8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions integration-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* This software is licensed under the Apache License version 2.
*/

import java.io.IOException
import kotlin.io.*

plugins {
`maven-publish`
id("java")
Expand Down Expand Up @@ -144,7 +147,7 @@ tasks {
} else {
println("checkContainerRunning command execution failed with exit code $exitCode")
}
} catch (e: java.io.IOException) {
} catch (e: IOException) {
println("checkContainerRunning command execution failed: ${e.message}")
}
}
Expand All @@ -164,7 +167,7 @@ tasks {
} else {
println("checkDockerRunning Command execution failed with exit code $exitCode")
}
} catch (e: java.io.IOException) {
} catch (e: IOException) {
println("checkDockerRunning command execution failed: ${e.message}")
}
printDockerCheckInfo()
Expand Down

0 comments on commit ee738e8

Please sign in to comment.