override fun getArguments()

in agent/src/main/kotlin/com/jetbrains/teamcity/plugins/unrealengine/agent/UnrealEngineProgramCommandLine.kt [38:48]


        override fun getArguments(): MutableList<String> {
            val onWindows = environment.osType == OSType.Windows
            return commandLine.arguments
                .map {
                    if (onWindows) {
                        it.escapeInnerQuotes()
                    } else {
                        it
                    }
                }.toMutableList()
        }