Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    src/main/java/io/onedev/k8shelper/KubernetesHelper.java
    skipped 263 lines
    264 264   "exitCode=\"$?\"",
    265 265   "if [ $exitCode -eq 0 ]",
    266 266   "then",
    267  - " echo '" + TaskLogger.wrapWithAnsiNotice("Step \"" + escapedStepNames + "\" is successful") + "'",
     267 + " echo '" + TaskLogger.wrapWithAnsiSuccess("Step \"" + escapedStepNames + "\" is successful") + "'",
    268 268   " touch " + markPrefix + ".successful",
    269 269   "else",
    270  - " echo '" + TaskLogger.wrapWithAnsiNotice("Step \"" + escapedStepNames + "\" is failed") + "'",
     270 + " echo '" + TaskLogger.wrapWithAnsiError("Step \"" + escapedStepNames + "\" is failed") + "'",
    271 271   " touch " + markPrefix + ".failed",
    272 272   "fi",
    273 273   "echo " + LOG_END_MESSAGE,
    skipped 764 lines
Please wait...
Page is in error, reload to recover