diff --git a/build.gradle b/build.gradle index 2a4607f..b730fa9 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'kotlinx-serialization' group = 'org.domaindrivenarchitecture.provs' -version = '0.9.10-SNAPSHOT' +version = 'release-0.9.10' repositories { mavenCentral() diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt index 277e013..602f60e 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt @@ -91,6 +91,7 @@ fun Prov.provisionWorkplace( configureRedshift() installBinariesProvs() + installBinariesC4k() } if (desktopType == DesktopType.IDE) { diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/BinariesProvs.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/BinariesProvs.kt index 3113498..f544cb7 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/BinariesProvs.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/BinariesProvs.kt @@ -21,7 +21,7 @@ fun Prov.installBinariesProvs(reprovision: Boolean = false) = task { filename = "provs-desktop.jar", sha256sum = provsDesktopSha256sum, sudo = true, - overwrite = reprovision + overwrite = false // don't overwrite, as code always refers to an older version, for which the checksum is known ) cmd("chmod 755 /usr/local/bin/provs-desktop.jar", sudo = true)