Skip to content

Commit

Permalink
Delint ArchiveArtifacts (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
c42-arthur authored Aug 10, 2023
1 parent 0bed78e commit e3492af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import com.code42.jenkins.pipelinekt.core.writer.GroovyWriter
*/
data class ArchiveArtifacts(val artifacts: Var.Literal.Str, val fingerprint: Boolean = false, val allowEmptyArchive: Boolean = false) : DeclarativeStep, SingletonStep {
override fun toGroovy(writer: GroovyWriter) {
writer.writeln("archiveArtifacts artifacts: ${artifacts.toGroovy()}, fingerprint: $fingerprint, allowEmptyArchive: $allowEmptyArchive")
writer.writeln("archiveArtifacts artifacts: ${artifacts.toGroovy()}, " +
"fingerprint: $fingerprint, " +
"allowEmptyArchive: $allowEmptyArchive")
}
}
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.19.0
0.19.1

0 comments on commit e3492af

Please sign in to comment.