saagie / updatarium

Updatarium : Update everything
Apache License 2.0
14 stars 6 forks source link

:sparkles: Add force option in the ChangeSet DSL. Fix #81 #88

Closed Tetragramato closed 4 years ago

Tetragramato commented 4 years ago

Add force to changeSet DSL, with tests and Doc :

changeLog {
    changeSet(id = "ChangeSet-bash-1", author = "Bash") {
        action {
            logger.info { "Hello $it!" }
        }
    }
    // Will be executed again
    changeSet(id = "ChangeSet-bash-1", author = "Bash") {
        force = true
        action {
            logger.info { "Will be executed again" }
        }
    }
}