We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b5d98d commit 68a4234Copy full SHA for 68a4234
1 file changed
devops/CompileProtoFiles.ps1
@@ -71,7 +71,7 @@ function Update-Ruby()
71
72
function Update-Swift()
73
{
74
- $SwiftPath = "../java/src/main/java/proto"
+ $SwiftPath = "../swift/Okapi/Sources/OkapiSwift/proto"
75
Remove-Protofiles($SwiftPath)
76
protoc $( Get-ProtoPath ) `
77
--swift_out="$SwiftPath" `
@@ -88,10 +88,15 @@ function Update-Java()
88
$( Get-ProtoFiles )
89
}
90
91
+function Update-Python()
92
+{
93
+ # Python is handled in the BuildPython due to venv requirements
94
+ . "./BuildPython.ps1" -RequirementsOnly $true
95
+}
96
+
97
Setup
98
Update-Golang
99
+Update-Python
100
Update-Ruby
101
Update-Swift
102
Update-Java
-# Python is handled in the BuildPython due to venv requirements
-. "./BuildPython.ps1" -RequirementsOnly $true
0 commit comments