Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    src/main/java/io/onedev/k8shelper/KubernetesHelper.java
    skipped 244 lines
    245 245   "done",
    246 246   "if [ -f " + markPrefix + ".skip ]",
    247 247   "then",
    248  - " echo 'Skipping step \"" + escapedStepNames + "\"...'",
     248 + " echo '" + TaskLogger.wrapWithAnsiNotice("Skipping step \"" + escapedStepNames + "\"...") + "'",
    249 249   " echo " + LOG_END_MESSAGE,
    250 250   " exit 0",
    251 251   "fi",
    252 252   "if [ -f " + markPrefix + ".error ]",
    253 253   "then",
    254  - " echo 'Running step \"" + escapedStepNames + "\"...'",
     254 + " echo '" + TaskLogger.wrapWithAnsiNotice("Running step \"" + escapedStepNames + "\"...") + "'",
    255 255   " cat " + markPrefix + ".error",
    256 256   " touch " + markPrefix + ".failed",
    257 257   " echo " + LOG_END_MESSAGE,
    skipped 1 lines
    259 259   "fi",
    260 260   "cd " + getWorkspace().getAbsolutePath()
    261 261   + " && sh " + setupScriptFile.getAbsolutePath()
    262  - + " && echo 'Running step \"" + escapedStepNames + "\"...'"
     262 + + " && echo '" + TaskLogger.wrapWithAnsiNotice("Running step \"" + escapedStepNames + "\"...") + "'"
    263 263   + " && sh " + stepScriptFile.getAbsolutePath(),
    264 264   "exitCode=\"$?\"",
    265 265   "if [ $exitCode -eq 0 ]",
    skipped 770 lines
Please wait...
Page is in error, reload to recover