Skip to content

Commit 68a4234

Browse files
Refactor proto fixes - Ruby already works(#221)
1 parent 4b5d98d commit 68a4234

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

devops/CompileProtoFiles.ps1

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function Update-Ruby()
7171

7272
function Update-Swift()
7373
{
74-
$SwiftPath = "../java/src/main/java/proto"
74+
$SwiftPath = "../swift/Okapi/Sources/OkapiSwift/proto"
7575
Remove-Protofiles($SwiftPath)
7676
protoc $( Get-ProtoPath ) `
7777
--swift_out="$SwiftPath" `
@@ -88,10 +88,15 @@ function Update-Java()
8888
$( Get-ProtoFiles )
8989
}
9090

91+
function Update-Python()
92+
{
93+
# Python is handled in the BuildPython due to venv requirements
94+
. "./BuildPython.ps1" -RequirementsOnly $true
95+
}
96+
9197
Setup
9298
Update-Golang
99+
Update-Python
93100
Update-Ruby
94101
Update-Swift
95102
Update-Java
96-
# Python is handled in the BuildPython due to venv requirements
97-
. "./BuildPython.ps1" -RequirementsOnly $true

0 commit comments

Comments
 (0)