Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for Rmdir (0.04 seconds)

  1. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

        fi
    
        """.trimIndent()
    
    fun checkCleanDirWindows(
        dir: String,
        exitOnFailure: Boolean = true,
    ) = """
    
        IF exist $dir (
            TREE $dir
            RMDIR /S /Q $dir
            ${if (exitOnFailure) "EXIT 1" else ""}
        )
        """.trimIndent()
    
    fun BuildFeatures.publishBuildStatusToGithub(model: CIBuildModel) {
        if (model.publishStatusToGitHub) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 05:03:56 GMT 2026
    - 8.5K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

    fun cleanupPerformanceTestSplits(os: Os): BuildSteps.() -> Unit {
        val unixScript = """
    rm -rf $PERFORMANCE_TEST_SPLIT_DIRECTORY_NAME
    """
    
        val windowsScript = """
    if exist $PERFORMANCE_TEST_SPLIT_DIRECTORY_NAME rmdir /s /q $PERFORMANCE_TEST_SPLIT_DIRECTORY_NAME
    """
    
        return {
            script {
                name = "CLEANUP_PERFORMANCE_TEST_SPLITS"
                executionMode = BuildStep.ExecutionMode.ALWAYS
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 29 01:37:22 GMT 2026
    - 17.2K bytes
    - Click Count (0)
Back to Top